Define the Control statements in Computer Programming?
The statements are part of the program that performs some action. The compiler will check a program sequentially from the main(). It will execute in the order they have written.
The control structures can conclude the flow of control in the program depending upon certain conditions is true or false and C provides the below mentioned three different types of control statements.
1. The Selection control: The Selection control statements permits the computer to decide whether to execute the statements or not.
2. The Case control: The Case control statements inform the computer to execute the statement if that particular case happens.
3. A Loop Control : Loop control statements will execute a group of statements repeatedly until a particular condition is satisfied.