1.

What is the output of this C code?   #include <stdio.h> 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
Answer» E.


Discussion

No Comment Found

Related MCQs