-
What will be the output of the following C code?
#include <stdio.h>
int main()
{
printf("Interview");
continue;
printf(" Mania");
}
-
- Compilation Error
- Mania
- Interview
- Runtime Error
- None of these
Correct Option: A
Compilation Error
main.c: In function ‘main’:
main.c:5:9: error: continue statement not within a loop
continue;