answersLogoWhite

0

Decision making statements make use of conditional expressions. In C++ there are three possibilities: if/else, switch/case and the ternary operator (?:).

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What is the difference between statements in c plus plus charconstp and char constp?

There is no difference. Both statements are invalid.


Control statement in c plus plus?

Control statements are statements that alter the flow of execution according to the evaluation of an expression (the condition). The C++ control statements are ifstatements, switch statements and the tertiary conditional operator, ?:.


Why is making decision important for an entrepreneur?

because it involves future business plus maybe other work forces.


What c plus plus statements assign x the value 12?

x = 12;


What are unconditional statements in c plus plus?

Unconditional statements are statements that are invoked unconditionally. Conditional statements have a controlling expression, while unconditional statements do not. For example: void f (bool b) { if (b==true) do_something(); // conditional statement (controlled by the expression b==true) do_something_else(); // unconditional (executes regardless of b's value) }


What are the conditional statement of turbo c plus plus dos based?

Statements that check an expression then may or may not execute a statement or group of statements depending on the result of the condition.


Explain control instructions in c plus plus?

Control instructions are instructions that alter the flow of execution. In C++ this include if, if-else statements, switch-case statements and the conditional ternary operator (?:), as well as loop structures (for, while, do-while) and procedural goto statements.


What is the character used at the end of executable statements in C plus plus?

The semi-colon converts a C++ expression into a statement.


What is the difference between a holding and dicta?

holding is the rule of law or legal principle that comes from the decision or the judgment plus the material facts of the case dicta means other statements in the decision that do not form part of the holding


When was The Making of Plus One created?

The Making of Plus One was created in 2010.


What is the duration of The Making of Plus One?

The duration of The Making of Plus One is 1.55 hours.


Looping statement in c plus plus?

There are several 'looping' statements in C++. They are:while () { }do { } while () ;for (index-start, index-end; index increment/decrement) { }They are used to repetitively execute statements as long as the statement(s) controlling the loop are true.