1.

What will be the output of the following C code?
 #include <stdio.h>
int main()
{
printf("Ajit ");
Label1: Label2:
printf("Sumi ");
printf("Abhay ");
}

A. Ajit
B. Sumi
C. Abhay
D. Ajit Sumi Abhay
E. Sumi Ajit Abhay
Answer» E. Sumi Ajit Abhay


Discussion

No Comment Found

Related MCQs