z/OS UNIX System Services User's Guide
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


The for loop

z/OS UNIX System Services User's Guide
SA23-2279-00

The statement:
for
(expression1;expression2;expression3)
statement
is equivalent to the following instruction sequence:
expression1
while (expression2) {
    statement
    expression3
}

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014