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