Loops Iterative control instruction is also known as repetitive control instruction or loop. Sometimes it is desirable to executed same statement again and again. This can be done with the help of loops There are three ways to implement loops
Decision Control Instruction
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() { ..… …..