Q136
What will be the output of the following C code? #include int main() int i = 0; for (; ; ;) printf("In for loop "); printf("After loop ");
A.
Compile time error
AnswerB.
Infinite loop
C.
After loop
D.
Undefined behaviour
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board