break  goto

Chapter 1: Overview

continue

The continue statement causes the execution of the next repetition of a loop statement without executing any of the remaining statements in the loop.

Table 1-11: continue statement

Format

Meaning

do { do these commands; if (condition) continue; do these other commands; } while (expression); do this stuff;

If this continue statement is executed, then the program immediately goes to the “while (expression)” line, tests the expression, and performs the next iteration of the loop without executing the remaining statements in the loop.





Copyright © 2005. Sybase Inc. All rights reserved. goto

View this book as PDF