1.

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

A. Ajit
B. Imroj
C. Imroj Ajit
D. Ajit Imroj
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs