-
What will be the output of the following C code?
#include <stdio.h>
int main()
{
int k = 0, L = 0;
for (k; k < 3; k++)
{
for (L = 0; L < 5; L++)
{
printf("Interview\n");
break;
}
printf("Mania\n");
}
printf("Interview Mania\n");
}
-
- Interview
Mania
Interview
Interview Mania - Interview Mania
- Interview
Mania
Interview
Mania
Interview
Mania
Interview Mania - Compilation Error
- None of these
- Interview
Correct Option: C
Interview
Mania
Interview
Mania
Interview
Mania
Interview Mania