Lines Matching full:statements
368 This line must be followed by one or more statements,
460 function calls, and in return statements.
478 Control Statements
480 The `if', the `while', and the `for' statements
484 statements enclosed in braces.
497 if(relation) {statements}
498 if(relation) {statements} else {statements}
499 while(relation) {statements}
500 for(expression1; relation; expression2) {statements}
504 A relation in one of the control statements is an expression of the form
524 If an `else' branch is present, the statements in this branch are
537 and, if true, the statements in the range of the `for' are executed.
547 Here are some examples of the use of the control statements.
616 Normally statements are typed one to a line. It is also permissible
617 to type several statements on a line separated by semicolons.
755 Newline characters or semicolons separate statements.
1075 Statements
1077 Statements must be separated by semicolon or newline.
1078 Except where altered by control statements, execution
1081 Expression statements
1087 Compound statements
1089 Statements may be grouped together and used when one statement is expected
1092 Quoted string statements
1098 If statements
1104 If-else statements
1112 While statements
1120 For statements
1138 Break statements
1144 Continue statements
1156 Auto statements
1167 Define statements
1181 Return statements