Saved Bookmarks
| 1. |
ttureWhat is the importance of default case in switch case st |
|
Answer» The switch and case keywords evaluate expression and execute any statement associated with constant expression whose value matches the initial expression. If there is no match with a constant expression, the statement associated with the default keyword is executed. |
|