Grammar of C Statement
(6.6) statement:
labeled statement | compound-statement | expression-statement | selection statement | iteration-statement | jump-statement
(6.6.5) iteration-statement:
while ( expression) statement ;
do statement while (expression) ;
for (expression opt ; expression opt ; expression opt )
statement ;
C Language authorities
- (The "white book"/K&R C) The C Programming Language By Brian W. Kernighan and Dennis M.Ritchie (prentice-Hall, 1st Edition 1978, 2nd Edition, 1990)