--Chris#include <stdio.h> main (int argc, char **argv) { int i; for (i = 0; i < 10; i++) { if (i == 5) continue; printf ("i = %d\n", i); } } [jcw@linux jcw]$ gcc t.c [jcw@linux jcw]$ ./a.out i = 0 i = 1 i = 2 i = 3 i = 4 i = 6 i = 7 i = 8 i = 9 [jcw@linux jcw]$
In reply to (jcwren) RE: (tye)Re: The last command is like the break statement in C
by jcwren
in thread The last command is like the break statement in C
by princepawn
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |