Introduction to Conditional Statement
Conditional Statement
Decision making statement is depending on the condition block need to be executed or not which is decided by condition. In C programming language there are three types of conditional statement:
- If statement
- If else statement
- Nested if else statement
- Else if ladder statement
- Switch case statement