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