/* Program#ifbreak.c This program jumps out of an infinite loop using the break statement */ #include main() { int t ; for ( ; ; ) { scanf("%d" , &t) ; if ( t==10 ) break ; } printf("End of an infinite loop...\n"); }