Control Statements in C Plus Plus (C++)

Control statements alter the flow of execution of the programs. Control statements can be broadly divided into three categories: Decision-making or Conditional Statements (Branching and Selection) if statement if-else statement switch statement Loop Statements for statement while statement do-while statement Breaking Control Statements break statement continue statement goto statement