Home » C Programming » Loops » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    printf("Hello ");
    goto Level1;
    printf("Hey ");
    Level1:goto Level2;
    printf("Welcome");
    Level2:printf("Interview Mania");
    }
    1. Hello
    2. Hey
    3. Welcome
    4. Interview Mania
    5. Hello Interview Mania
Correct Option: E

Hello Interview Mania



Your comments will be displayed only after manual approval.