Which statement is known as decision making statement in C?
The correct answer is All of the Above.
Key Points
- Decision making structures require that the programmer specifies one or more conditions to be evaluated or tested by the program.
- It also involves a statement or statements to be executed if the condition is determined to be true, and optionally, other statements to be executed if the condition is determined to be false.
- C programming language provides the following types of decision-making statements.
- if...else statement
- An if statement can be followed by an optional else statement, which executes when the Boolean expression is false.
- switch statement
- A switch statement allows a variable to be tested for equality against a list of values.
- C goto
- The goto statement in C/C++ also referred to as the unconditional jump statement can be used to jump from one point to another within a function.
Additional Information
- C break:
- This loop control statement is used to terminate the loop.
- As soon as the break statement is encountered from within a loop, the loop iterations stop there, and control returns from the loop immediately to the first statement after the loop.



