设有定义:char p[]={'1','2','3'},*q=p;,以下不能计算出一个char型数据所占字节数的表达式是().
A.sizeof(p)
B.sizeof(char)
C.sizeof(p[0])
D.sizeof(*q)
A呀,A出来的是P[]数组的长度
sizeof(p)