問題詳情

80. Consider the following C code fragment:
 int x=38;
int *p=&x;
Which of the following code will output 38?
(A) printf("%d" ,
(B) printf("%d" , *&p) ;
(C) printf("%d" , *&x) ;
(D) printf("%d" , &*x);
(E) None of the above

參考答案

答案:C
難度:計算中-1
書單:沒有書單,新增