if myVar is case2 then functions in this case and default get executedC Programming Language>Flow Control>selection statements>switch statement>break statement and fall-through>not adding breaks in the cases>adds more functionality as you fall-through the cases>switch ( myVar ) { case 1: DoSometimes(); case 2: DoFrequently(); default: DoAlways(); }>
|



