int c[][4]={1,2,3,4,5,6,7,34,213,56,62,3,23,12,34,56}; printf("%x,%x\n",c[2][2],*(*(c+1)+1));3e,6.那个6是怎么来的啊?

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/07 10:13:50
int c[][4]={1,2,3,4,5,6,7,34,213,56,62,3,23,12,34,56}; printf(

int c[][4]={1,2,3,4,5,6,7,34,213,56,62,3,23,12,34,56}; printf("%x,%x\n",c[2][2],*(*(c+1)+1));3e,6.那个6是怎么来的啊?
int c[][4]={1,2,3,4,5,6,7,34,213,56,62,3,23,12,34,56}; printf("%x,%x\n",c[2][2],*(*(c+1)+1));
3e,6.那个6是怎么来的啊?

int c[][4]={1,2,3,4,5,6,7,34,213,56,62,3,23,12,34,56}; printf("%x,%x\n",c[2][2],*(*(c+1)+1));3e,6.那个6是怎么来的啊?
c[][4]用数学方式写出来如下【4行4列】:
1 2 3 4
5 6 7 34
.
*(*(c+1)+1其中,*(c+1)代表是第1行,+1代表是第1列,即是c[1][1](数组是从0行0列开始的),=6