Decision Control Statement
2020-05-12
Condition control statements:- C supports five types of condition control statements. Simple if statement If else statement Nested if statement Else if ladder Switch statement i) Simple if statement:- It is a decision making statements and is used to control the flow of execution. Syntax if(expression) { statements; } IfContinue Reading