-
What will be the output of the following C code?
#include <stdio.h>
void main()
{
int k = 0;
for (k = 0; k < 6; k++)
if (k < 4)
{
printf("Interview Mania");
break;
}
}
-
- "Interview Mania" is printed 6 times
- "Interview Mania" is printed 4 times
- Interview Mania
- Compilation Error
- None of these
Correct Option: C
Interview Mania