#include <stdio.h> void main() { int k = 2; if (k == 2) { goto Lavel; } Lavel: printf("Interview Mania"); }
Interview Mania
Previous Question Next Question
Your comments will be displayed only after manual approval.