What is the output of this C code?
void foo(); int main() { void foo(int); foo(1); return 0; } void foo(int i) { printf("2 "); }
Answer: A
No answer description available for this question.