C Programming
Control Statement

The statement which control the flow of control is called control statement.

   C Provides following types of control statement-

1. Selective Statement or Conditional Statement.
2. Iterative Statement or Repetitive Statement or Loop.

3. Jumping Statement.

1. Conditional Statement

The statement which executes on the basis of certain condition is called conditional statement.

 C provides following types of conditional statement:-

1. Simple if
2. if else statement
3. Nested if
4. if else if ladder

1. Iterative Statement

The statement which executes no of time on the basis of certain condition is called iterative statement.

Related Posts:

  • If-else-If ladder : C Programming                C Programming If else-if ladder The if else ladder statement in C programming language is used to test set of conditions in sequence. A… Read More
  • Nested if : C Programming            C Programming Nested if If any statement is executed on the basis of multiple if condition is called nested if. if((condition)&&(condition)&&(co… Read More
  • Simple if Statement : C Programming                  C Programming Simple if Statement The statement which executes on the basis of certain condition is called simple if statement… Read More
  • If else : C Programming C Programming if else If we want to execute the particular statement on the basis of certain condition, called if else statement. Syntax     if(condition) { //body to execute } else { //body to execu… Read More
  • Switch Statement in C : C Programming                   C Programming              Switch Statement in C In switch statement we test the sin… Read More