C Programming
Control Statements in CThe 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.
C provides following types of iterative statement:-
1. For Loop
2. While Loop
3. Do While Loop
C Programming