Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
int main()
{
    int i = 0, j = 0;
    l1: while (i < 2)
    {
        i++;
        while (j < 3)
        {
            printf("loop\n");
            goto l1;
        }
    }
}

A. loop loop

B. compilation error

C. oop loop loop loop

D. infinite loop

Answer: Option A


This Question Belongs to C Program >> Control Structures

Join The Discussion

Related Questions on Control Structures