Home » C Programming » Loops » Question
  1. What will be the output of the following C code?
     #include <stdio.h>
    int main()
    {
    printf("Ajit ");
    Label1: Label2:
    printf("Sumi ");
    printf("Abhay ");
    }
    1. Ajit
    2. Sumi
    3. Abhay
    4. Ajit Sumi Abhay
    5. Sumi Ajit Abhay
Correct Option: D

Ajit Sumi Abhay



Your comments will be displayed only after manual approval.