Menu

C++ TUTORIALS - C++ Decision Making

C++ Decision Making

ADVERTISEMENTS

StatementDescription
if statementAn if statement consists of a boolean expression followed by one or more statements.
if...else statementAn if statement can be followed by an optional else statement, which executes when the boolean expression is false.
switch statementA switch statement allows a variable to be tested for equality against a list of values.
nested if statementsYou can use one if or else if statement inside another if or else if statement(s).
nested switch statementsYou can use one swicth statement inside another switch statement(s).

ADVERTISEMENTS

The ? : Operator:

Exp1 ? Exp2 : Exp3;

ADVERTISEMENTS