Examveda
Examveda

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");
}

A. In while loop
After loop

B. After loop

C. In while loop
In while loop
After loop

D. In while loop

Answer: Option B


This Question Belongs to C Program >> Control Structures

Join The Discussion

Related Questions on Control Structures