#include <stdio.h> int main() { printf("Hello "); goto Level1; printf("Hey "); Level1:goto Level2; printf("Welcome"); Level2:printf("Interview Mania"); }
Hello Interview Mania
Previous Question Next Question
Your comments will be displayed only after manual approval.