Description |
 |
You use looping statements to force a program to repeatedly
execute a statement. The executed statement is called the loop
body. Loops execute until the value of a controlling
expression is 0. The controlling expression may be any scalar data
type.
C has several looping statements: “while ”, “do...while ”, and “for ”. The main difference between these
statements is the point at which each loop tests for the exit condition.
Refer to the “goto ”,
“continue ”,
and “break ”
statements for ways to exit a loop without reaching its end or meeting
loop exit tests.