elibraryportal Logo

Decision Making Statement in C | Control Statement

All statement written in a program are executed from top to bottom one by one. control statement are used to execute /transfer the control from one part of the program to another depending on a condition.These statements are also called as conditional statements.

Types of Control Statement

There are four types of control statements in C.

  1. Decision making statements
  2. Selection statements
  3. Iteration statements
  4. Jump statements

1) Decision making statements

C language provides the following types of decision making statements.

2) Selection statements

The switch-case Statement is called Selection statements.

4) Iteration statements

fro Loop stamement is used Iteration statements.

4) Jump statements

go to statement is used Jump statements.

Next TopicIf Statement in C