|
NAME flow - flow control
DESCRIPTION A statement_block is either a
statement or
{ statement;
statement; ... }
Conditionals
if (condition)
statement_block
if (condition)
statement_block else
statement_block
Loops
while (condition)
statement_block
for (start;
condition;
increment) statement_block
Branching within loop statement_blocks:
continue
break
To jump back to the command level (usually on errors):
exit
SEE ALSO
syntax
Kernighan and Ritchie, The C Programming Language.
... Meeting the software needs of scientists since 1985 ...
Last Formatted Jul 14, 2008
Last Updated 02/28/01
Send comments, queries, suggestions to
info@certif.com
© 1995-2003 Certified Scientific Software. All rights reserved
|