1.

What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));}

A. 1 1
B. 1 2
C. 2 1
D. 2 2
Answer» C. 2 1


Discussion

No Comment Found