单项选择题

若有以下的定义和语句:
main()
int a[4][3] *p[4],j;
for(j=0;j<4;j++) p[j]=a[j];

则能表示数组元素的表达式是______。

A.*(p[1])
B.a[4][3]
C.a[1]
D.*(p+4)[1]