switch Statement (C)
switch( c ) { case 'A': capa++; case 'a': lettera++; default : total++; } All three statements of the switch body in this example are executed if c is equal to 'A' since a break statement does not appear before the following case. Execution control ......