Vidyalelo
C Programming · Q62

Control Structures

Programming · C Programming · question 62

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
Answer
C.
Nothing
D.
Error

Answer: Option B

Solution

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