a[3][2],我觉得前面个3和指针没有任何直接的联系,
有关系的不过是偏移量,
你可以把下面的代码运行下,
就知道你的理论是不对的。
#include <stdio.h>
int main()
{
int a[3][2]={10,20,30,40,50,60},(*p)[4];
p=a;
printf("%d\n",*(*(p+1)+1));
return 0;
}
有关系的不过是偏移量,
你可以把下面的代码运行下,
就知道你的理论是不对的。
#include <stdio.h>
int main()
{
int a[3][2]={10,20,30,40,50,60},(*p)[4];
p=a;
printf("%d\n",*(*(p+1)+1));
return 0;
}