#include <stdio.h> int main() { int a[3][4],i,j; int(*p)[4]; //定义p为指针,指向一个长度为4的整型数组 p = a; /********** Begin *********/ p = p + 1; /********** End **********/ return 0; }
时间: 2023-07-18 07:41:04 浏览: 126
#include <stdio.h>
在代码的注释部分填写代码,使得通过p指针访问a[1][2]的值为10。可以使用指针运算符和整数常量(不得使用数组下标操作)。
```
(*p)[2] = 10;
```
解释:p是一个指向长度为4的整型数组的指针,p+1指向的是a数组的第2行,(*p)[2]就是指向a[1][2]的元素,将它的值设为10即可。
阅读全文