0 votes
in C Plus Plus by
What are different types of decision control statements in C?

1 Answer

0 votes
by

All statements written in a program are executed from top to bottom one by one. Control statements are used to execute/transfer the control from one part of the program to another depending on the condition.

  • If-else statement.
    • normal if-else statement.
    • Else-if statement
    • nested if-else statement.
  • Switch statement.
...