Computer Science, asked by durbadatta1715, 10 months ago

what is conditional statement in C++ ?? ​

Answers

Answered by Adityalko
1

Answer:

Conditional Statements in C++ or if Statements. ... If the condition evaluates to True, a set of statements is executed, otherwise another set of statements is executed.

Answered by mehvish61
1

Conditional statements help you to make a decision based on certain conditions. These conditions are specified by a set of conditional statements having boolean expressions which are evaluated to a boolean value true or false.

There are following types of conditional statements in C. If statement. If-Else statement.

Similar questions