The Statement box here represents the code
to execute if the Boolean Expression is true.
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");
}
In the example above, the code to execute is:
printf ("x equals 7\n");
printf ("seven is a lucky number.\n");
This code will only be executed if the
Boolean Expression is true.