Control statements

Control statements enable us to specify the flow of program control; ie, the order in which the instructions in a program must be executed. They make it possible to make decisions, to perform tasks repeatedly or to jump from one section of code to another.
There are four types of control statements in C:
  1. Decision making statements
  2. Selection statements
  3. Iteration statements
  4. Jump statements

No comments:

Post a Comment