1.

What is the output of the below code snippet? #include main() { unsigned x = 5, y=&x, *p = y+0; printf("%u",*p); }

A. Address of x
B. Address of y
C. Address of p
D. 5
Answer» E.


Discussion

No Comment Found