1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
printf("Krishna ");
goto Label;
printf("Imroj ");
}
void fun()
{
Label: printf("Abhay ");
}

A. Krishna
B. Imroj
C. Abhay
D. Compilation Error
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs