What is the output of this C code?
int main() { int i = 10; int *p = &i; printf("%d\n", *p++); }
Answer: A
No answer description available for this question.