#include <stdio.h> void main() { int n = 5, L; if (n == 5) goto Read; Read: printf("%d ", n); printf("Interview Mania"); }
5 Interview Mania
Previous Question Next Question
Your comments will be displayed only after manual approval.