Control Structures in C Language | Control statements in C Language | Selection statements in C Language | Types of Looping in C Language

Control Structures in C Language | Control statements in C Language | Selection statements in C Language | Types of Looping in C Language

Control structure can be used to alter the normal flow of a program depending upon some Condition.

Control structures can be categorized into three types:

  • Selection Statements
  • Iterative/Looping Statements
  • Jumping Statements

1. Selection statements in C Langauge

Selection statements are used to execute a particular set of statements depending upon a Condition. They are of two types:

2. Iterative / Looping statements in C Language

Iterative statements are also known as looping statements. They are used to repeat same set of statements again and again depending upon a condition.

Iterative statements are of three types:

3. Jumping statements in C Language

Jumping statements are used to transfer the control of program from one point to another within the program. There are four types of jumping statements in C .

Spread the love
Lesson tags: conditional statements of c, control statements of c, control structures of c
Back to: C Programming Language
Spread the love