Q121
What will be the output of the following C code? #include int main() int i = 0, j = 0; while (i < 2) l1: i++; while (j < 3) printf("loop "); goto l1;
A.
loop loop
B.
Compile time error
C.
loop loop loop loop
D.
Infinite loop
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board