Q207
What will be the output of the following C code? #include void main() static int x = 3; x++; if (x <= 5) printf("hi"); main();
A.
Run time error
B.
hi
C.
Infinite hi
D.
hi hi
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board