Control instructions determine the flow of control in a program.
There are four types of control instructions in C language :
Sequence Control Instruction - It ensures that the instructions are executed in the same order in which they appear in the program.
Decision control and Case control Instruction - It allows the computer to take a decision as to which instruction is to be executed next.
Loop control Instruction - It helps computers to execute a group of statements repeatedly.