1.

What is the output of this C code? #include void main() { int x = 0; int *ptr = &5; printf("%p n", ptr); }

A. 5
B. Address of 5
C. Nothing
D. Compile time error
Answer» E.


Discussion

No Comment Found