Q195
What will be the output of the following C code? #include int main() void foo(); void f() foo(); f(); void foo() printf("2 ");
A.
2 2
B.
2
C.
Compile time error
D.
Depends on the compiler
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board