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");
}

A. Welcome
B. To
C. Interview Maina
D. Welcome To Interview Maina
E. Compilation Error
Answer» E. Compilation Error


Discussion

No Comment Found

Related MCQs