Flow-control statements are explained in Chapter 3, “Flow Control.”
The C language provides several kinds of flow-control statements. The for, while, and do statements create loops. The if and switch statements perform a branch. The break, continue, return, and goto statements perform an unconditional “jump” to another location in your program.
The following sections describe the C flow-control statements in alphabetical order.