This box represents the block of code to execute
if the second case is a match. (case 'B':)
That is, if the value of the variable Grade is 'B',
then the code under case 'B': will be executed.
printf ("Good \n");
break;
The printf statement will cause the word "Good"
to be output, and then the break; will cause
execution of the switch to be finished.