The Statement B box here represents the code
to execute if the Boolean Expression is false.

This code may be comprised of one or more statements.  If it
is more than one statement, it must be enclosed within
curly braces {}.

Example:


if (x == 7)
{
   printf ("x equals 7\n");
   printf ("seven is a lucky number.\n");
}
else
   printf ("x does not equal 7\n");



In the example above, the code to execute if
the Boolean Expression is false is:


   printf ("x does not equal 7\n");


This code will only be executed if the
Boolean Expression is false.