Q73
What will be the output of the following C code? #include void main() static int x; if (x++ < 2) main();
A.
Infinite calls to main
B.
Run time error
C.
Varies
D.
main is called twice
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board