In C++ language we have to perform a lot of operations and to do them we have a bunch of control statements that help us to perform specific tasks .
In C++ we can decide which statements we want to execute in our program and which statements and what to skip. This is called decision making. Most decisions are done on a condition basis.
When a particular condition arrives, you can execute the statements. Because these statements work with the conditions, they are also called conditional statements. And because they control execution in the statement program, they are also called control statements.