Home » C Programming » Loops » Question
  1. What will be the output of the following C code?
     #include <stdio.h>
    int main()
    {
    printf("Interview");
    continue;
    printf(" Mania");
    }
    1. Compilation Error
    2. Mania
    3. Interview
    4. Runtime Error
    5. 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;



Your comments will be displayed only after manual approval.