Vidyalelo
C Programming · Q101

Control Structures

Programming · C Programming · question 101

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
Answer

Answer: Option D

Solution

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