本博文源于笔者正在学习的c语言[]优先级大于*优先级.在定义二维数组时,a+1与[]号结合后,谁的优先级更高,是本博文探讨的话题
博文来源
想要看看*与[]谁的优先级更高
博文代码
cpp
#include<stdio.h>
#include<stdlib.h>
int main() {
int a[3][4] = { 1,2,3,4,
5,6,7,8,
9,10,11,12 };
printf("\n%d", (*(a + 1)[1]));
printf("\n%d", ((*(a + 1))[1]));
printf("\n%d", ((*((a + 1))[1])));
getchar();
getchar();
return 0;
}
演示效果
通过代码发现[]优先级比*号要高(a+1)[1]等价于a+2再取*号就是9了,在第二个pirintf代码中,等价于a[1][1] =6,第三个printf也跟第一个printf一样是9