1.

What is the output of this C code? void main() { int a[3] = {1, 2, 3}; int *p = a; int **r = &p; printf("%p %p", *r, a); }

A. Different address is printed
B. 1 2
C. Same address is printed.
D. 1 1
Answer» D. 1 1


Discussion

No Comment Found

Related MCQs