1.

What will be the output of the following C code?#include <stdio.h> int main() { printf("Hello "); goto Level1; printf("Hey "); Level1:goto Level2; printf("Welcome"); Level2:printf("Interview Mania"); }

A. Hello
B. Hey
C. Welcome
D. Interview Mania
E. Hello Interview Mania
Answer» F.


Discussion

No Comment Found

Related MCQs