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