int a[3][4];int *p[4];p=a;printf("%d,%d",*(*(p+2)+4),p[2][4]);
你确定题目是"采用指针数组去访问数组元素",而不是"采用数组指针去访问数组元素"