-
What will be the output of the following C code?
#include <stdio.h>
int main()
{
int k = 0, L = 0;
while (k < 3)
{
Level1 : k++;
while (L < 4)
{
printf("Interview Mania");
goto Level1;
}
}
}
-
- Interview Mania
- "Interview Mania" is printed 4 times
- Compilation Error
- "Interview Mania" is printed infinite times
- None of these
Correct Option: D
"Interview Mania" is printed infinite times