我想将指针作为数组的大小元素传递
例子:
void hello(int array1[how can i refer pointer "ptr" here][2])
{
// i want to access the array used in the main() here
printf("hi");
}
int main()
{
int c=5;
int *ptr=&c;
a[*ptr][2];
a[0][1]=0;
a[0][2]=4;
}
我很抱歉我的问题在这里不清楚,我想在我的 hello() 函数中访问 main() 函数中使用的数组。