Discussion :: C-MCQs
-
What is the output of code given below?
int main()
{
int i = 0, j = 0;
while (l1: i < 2)
{
i++;
while (j < 3)
{
printf("loop\n");
goto l1;
}
}
}
Answer : Option B
Explanation :
none
Be The First To Comment