Transfer of control statements
Transfer of control statements alter the normal control path by stopping the sequential execution of statements within a block. All of them end execution of the block that contains them. After a continue statement is executed, the containing block might be executed again in a new loop iteration. The die and return statements also end the action in which they are executed.