A loop 'forward'command. When encountered within any for, while or do..while loop, causes the rest of the commands within the loop to be ignored and forces execution back to the beginning of the loop.
Syntax
continue;
Notes
Examples
for (i=0;i<64;i=i+1)
{ if ((i==48)||(i==50)||(i==56)) { continue; } else { ... } }
Last modified: 8/19/2002
Sergei L. Kosakovsky Pond and Spencer V. Muse, 1997-2002