Q132
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.
Compilation 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