differentiate between break statement and if else statement
Answers
Answered by
1
Answer:
It is either if-statement will be executed or else-statement is executed. Switch case statement executes one case after another till a break statement appears or until the end of switch statement is reached. If the condition inside if statements is false then by default the else statement is executed if created
Explanation:
Similar questions