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
答案:登入後查看
統計: A(0), B(2), C(4), D(0), E(0) #3081410
統計: A(0), B(2), C(4), D(0), E(0) #3081410