Computer Science, asked by AnishaRoshan, 4 months ago

Q 33. Write a program no. 32 using if-else-if ladder.​

Answers

Answered by aaratinarnawar2007
1

Answer:

mark my answer as brainliest

Conditional Statements in C programming are used to make decisions based on the conditions. Conditional statements execute sequentially when there is no condition around the statements. If you put some condition for a block of statements, the execution flow may change based on the result evaluated by the condition. This process is called decision making in 'C.'

In 'C' programming conditional statements are possible with the help of the following two constructs:

1. If statement

2. If-else statement

It is also called as branching as a program decides which statement to execute based on the result of the evaluated condition.

Similar questions