Q109
What will be the output of the following C code? #include void main() int i = 0; if (i == 0) printf("Hello"); continue;
A.
Hello is printed infinite times
B.
Hello
C.
Varies
D.
Compile time error
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board