0
Difference beteeen default and else
what is the difference?
1 Answer
+ 5
You can see it as the final else of a switch statement. if no match are found in the cases (which are similar to else if) of the switch, the code will execute the default instruction.