Vidyalelo
C Programming · Q72

Control Structures

Programming · C Programming · question 72

Q72

What will be the output of the following C code? #include void main() int k; for (k = -3; k < -5; k++) printf("Hello");

A.
Hello
B.
Infinite hello
C.
Run time error
D.
Nothing
Answer

Answer: Option D

Solution

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