若有定义  typedef int *T[10];  T *a;  则以下与上述定义中a类型完全相同的是( )。

admin2022-04-02  26

问题 若有定义
 typedef int *T[10];
 T *a;
 则以下与上述定义中a类型完全相同的是(          )。

选项 A、int *a[10];
B、int **a[10];
C、int *(*a)[10];
D、int *a[][10];

答案B

解析 由题意可知,T是一个数组指针,即int*[],所以使用T*a定义,可知a属于int**[]类型,本题答案为B选项。
转载请注明原文地址:https://kaotiyun.com/show/2hkp777K
0

相关试题推荐
最新回复(0)