1.

What will be the output of the following C code? #include <stdio.h> void main() { static int n = 5; n++; if (n <= 10) { printf("Manjesh Ojha n"); main(); } }

A. "Manjesh Ojha" is printed 1 time
B. "Manjesh Ojha" is printed infinite time
C. "Manjesh Ojha" is printed 10 time
D. "Manjesh Ojha" is printed 5 time
E. None of these
Answer» E. None of these


Discussion

No Comment Found