Syntax:
continue;
Transfers control to the beginning of the nearest external operator of the cycle while, do, or for, which starts the next iteration. This effects produced by this operator are opposite to those of the break operator.
Example:
for (i = 0; i < n; i++)
{
if (a[i] == 0) continue;
a[i] = b[i];
}
|