Contact: aviboots(AT)netvision.net.il
39,860 questions
51,781 answers
573 users
#include <stdio.h> int main() { int i = 1; START: if (i > 5) goto EXIT; printf("START %d\n", i); i++; goto START; EXIT: printf("EXIT %d\n", i); return 0; } /* run: START 1 START 2 START 3 START 4 START 5 EXIT 6 */