Vidyalelo
C Programming · Q130

Control Structures

Programming · C Programming · question 130

Q130

What will be the output of the following C code? #include int main() while () printf("In while loop "); printf("After loop ");

A.
In while loop after loop
B.
After loop
C.
Compile time error
Answer
D.
Infinite loop

Answer: Option C

Solution

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