Home » C Programming » Loops » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    int k = 2;
    if (k == 2)
    {
    goto Lavel;
    }
    Lavel: printf("Interview Mania");
    }
    1. Compilation Error
    2. Interview Mania
    3. Garbage value
    4. Runtime Error
    5. None of these
Correct Option: B

Interview Mania



Your comments will be displayed only after manual approval.