Vidyalelo
C Programming · Q60

Control Structures

Programming · C Programming · question 60

Q60

What will be the output of the following C code? #include void main() int i = 0; do printf("Hello"); while (i != 0);

A.
Nothing
B.
H is printed infinite times
C.
Hello
Answer
D.
Run time error

Answer: Option C

Solution

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