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); }
Answer: C
No answer description available for this question.