#include⁢stdio.h> main() { int i=1; while(i<=10) { printf("%d",i); if(i==5) break; i++; } printf("Prog. End"); }
1 2 3 4 5 prog. End
#include⁢stdio.h> main() { int i=0; while(i⁢10) { i++; if(i%2==0) continue; printf("%d",i); } printf("Prog. End"); }
1 3 5 7 9 prog. End
#include⁢stdio.h> main() { int i=0; JAP:printf("Ram"); i++; if(i⁢15) goto JAP; else goto SATHI; printf("Laxman"); SATHI:printf("Seeta"); printf("RamayanaEnd"); }