/* Use break to force immediate termination of a for loop, bypassing the normal loop conditional test. */ #include int main(void) { int t; for (t=0; t<100; t++) { printf("%d ", t); if (t==10) break; } printf("\nFinally t=%d.\n", t); return 0; }