Vidyalelo
C Programming · Q134

Control Structures

Programming · C Programming · question 134

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

Answer: Option C

Solution

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