61
What will be the output of the following C code?
#include <stdio.h>
int main()
{
int i = 0;
while (i < 2)
{
if (i == 1)
break;
i++;
if (i == 1)
continue;
printf("In while loop\n");
}
printf("After loop\n");
} Answer & Solution
Answer: Option
B
No explanation is given for this question. Let's Discuss on Board