#include <stdio.h> int main() { int k = 0, L = 0; Level1: while (k < 3) { k++; while (L < 15) { printf("Hey...\n"); goto Level1; } } }
Hey...Hey...Hey...
Previous Question Next Question
Your comments will be displayed only after manual approval.