Decision making is about deciding the order of execution of statements based on certain conditions or repeat a group of statements until certain specified conditions are met. C language handles decision-making by supporting the following statements,
The if statement may be implemented in different forms depending on the complexity of conditions to be tested. The different forms are,
if statementif else statementNested if else statementif else if Ladder statement
Ask Question