what are the labels
case1:
case2:
case3: etc
how do we know to leave the current statement
break;
general formula``
switch ()
{
case :
break;
case :
break;
default:
break;
}
why should breaks be avoided outside of switch statements
makes code harder to read
what does a continue statement do
immediately breaks that iteration of a loop/statement and moves onto next
why should continues not be used
makes code harder to understadn