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