Q101
What will be the output of the following C code? #include void main() int i = 0; if (i == 0) goto label; label: printf("Hello");
A.
Nothing
B.
Error
C.
Infinite Hello
D.
Hello
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board