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