Can I refer to a case in default instead of copy-pasting the whole code?
For example:
switch(n)
{
case(1): //code here...
break;
case(2): //code here...
break;
case(3): //code here...
break;
default: case(2);
break;
}