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