This box represents the default situation - when
none of the cases matched the Constant Expression.
When this happens, the code for the default is
executed.
printf ("Below Ave \n");
Notice there is no break; after the code for
the default. Although it could have been included,
it is not necessary for the default code, since the
end of the switch statement is encountered after this
printf statement.