What, if anything, is wrong with the following code?.
void test(int x) { switch (x) { case 1: case 2: case 0: default: case 4: } }
Select the one correct answer.
(f)
There is nothing wrong with the code.
The case and default labels do not have to be specified in any specific order.
The use of the break statement is not mandatory, and without it the control flow will simply fall through the labels of the switch statement.