想知道为什么是 A 啊?

、若有定义:int i=1, a[4][3],b[3][4],(*p)[3];则( A )是正确的赋值
语句。
A)p=a; B)p=b; C)p=a[i]; D)p=b[i];

应该选择a
因为下标是3,如果是b会越界,cd都是一维数组

你确定是 A,不是 C ?