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