Control Statement
- Control statements are statements that alter the sequence of flow of instructions.
- In a program, statements may be execu6 sequentially, selectively or iteratively. Every programming languages provide statements to support sequence, selection (branching) and iteration.
- If the statements are executed sequentially, the flow is called as sequential flow. In some situations, if the statements alter the flow of execution like branching, iteration, jumping and function calls, this flow is called as control flow.
👉Jump statement