Vidyalelo
C Programming · Q207

Function

Programming · C Programming · question 207

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
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board