Computer Science, asked by stunningsanju1, 8 months ago

What are the differences between IF and SWITCH conditions in C language?

Answers

Answered by Anonymous
7

Answer:

The if statement is used to select among two alternatives. It uses a boolean expression to decide which of the alternative should be executed.

The switch statement is used to select among multiple alternatives. It uses an expression to determine which alternative should be executed.

Hope it helps you mate

Answered by Anonymous
3

Explanation:

The if statement is used to select among two alternatives. It uses a boolean expression to decide which of the alternative should be executed. The switch statement is used to select among multiple alternatives. It uses an expression to determine which alternative should be executed.

Similar questions