Home » C Programming » Loops » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    int n = 5, L;
    if (n == 5)
    goto Read;
    Read: printf("%d ", n);
    printf("Interview Mania");
    }
    1. 5
    2. Interview Mania
    3. 5 Interview Mania
    4. Interview Mania 5
    5. None of these
Correct Option: C

5 Interview Mania



Your comments will be displayed only after manual approval.