What is the output of this C code?
void main() { int a[3] = {1, 2, 3}; int *p = a; int *r = &p; printf("%d", (**r)); }
Answer: B
No answer description available for this question.