Decision Control Instructions Decision control instruction is also known as selection control instruction. C language provides three ways to implement this instruction: if if else Conditional operator if Following is the syntax of if statement: int main() { ..… …..