問題詳情
25. Which of the following C code is used to declare two pointers of integer?
(A) int *p,q;
(B) int *p, *a;
(C) int *(p,q) ;
(D) (int *) p,g;
(E) None of the above
參考答案
答案:B
難度:計算中-1
書單:沒有書單,新增
用户評論
【Jane Yen】評論
以下哪个C代码用于声明两个整数指针?(A)int *p,q;(B)int *p,*a;(C)int *(p,q);(D)(int *)p,g;(E)以上都不是答案:(B) int *p,*a; 解释:要声明两个整数指针,请使用相同的语法int *p,*a;。