下列定义中,不是指针数组定义的是()
下列定义中,不是指针数组定义的是()

A、int*p[5];
B、float*q[4];
C、int(*r)[6];
D、char*w[7];
【正确答案】:C

【题目解析】:(*r)[6]是指向一维数组的指针。

Top