The switch statement is a control statement that handles multiple selections and enumerations by passing control to one of the case statements within its body.
The goto statement passes control to the next iteration of the enclosing iteration statement in which it appears.
Branching is performed using jump statements which cause an immediate transfer of the program control.
A common use of continue is to transfer control to a specific switch-case label or the default label in a switch statement.
The do statement executes a statement or a block of statements enclosed in {} repeatedly until a specified expression evaluates to false.