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
詳解 (共 1 筆)
未解鎖
1. 題目解析 這道題目給出了一段C語...