阅读程序,回答问题:
#include
#include
using namespace std;
int main()
{ int a[3][4]={1,2,3,4,5,6,7,8,9,10,11,12};
int (*p)[4]; //该语句是定义一个数组指针,指向含4个元素的一维数组。
 p=a;       
 cout<
 p++;       
 cout<
  return 0;
}
请问这两个输出的地址差是多少字节?
A、16
B、4
C、1
D、编译错误
阅读程序,回答问题: #include #include using namespace std; int main( - 第6章——指针:所向披靡的“金箍棒” 魂 - C++程序设计基础 - 爱课程(中国大学MOOC) | 大学网课搜题引擎