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

Welcome To Interview Maina



Your comments will be displayed only after manual approval.