what are the types of conditional statements?
Answers
Answered by
1
Answer:
There are following types of conditional statements in C.
If statement.
If-Else statement.
Nested If-else statement.
If-Else If ladder.
Switch statement.
Answered by
5
Answer:
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
- Nested If-else statement
- If-Else If ladder
- Switch statement
hope it helps ❤️
Similar questions