1.

What will be the output of the following C code?
#include <stdio.h>
void main()
{
int n = 5, L;
Label: printf("%d", n);
if (n == 5)
goto Label;
}

A. Nothing
B. Compilation Error
C. 5 Infinite times
D. 5
E. None of these
Answer» D. 5


Discussion

No Comment Found

Related MCQs