This box represents the block of code to execute
if the third case is a match. (case 'C':)


That is, if the value of the variable Grade is 'C',
then the code under case 'C': will be executed.

printf ("Average \n");
break;

The printf statement will cause the word "Average"
to be output, and then the break; will cause 
execution of the switch to be finished.