<<<<<< TIME POSE SUBROUTINE >>>>>>>>>
If they want to quit, do so
<<<<< TERMINAL SCREEN DRAWING SUBROUTINE >>>>>>>>
TERMINAL
$V1$
<<<<<< REVIEW CLEANING SUBROUTINE >>>>>>
<<<<<< CLEAN THE INSIDE OF BOUNDED ARE ONLY >>>>>
ILLUSTRATION
External Initialization means declaring the variable
outside the function and initializing it!
int ar_OK[4] = { 2, 5, 0, -7 };
new_function()
{
:
:
}
Initializing an array declared inside a function is illegal.
new_function()
{
int ar_NOT_OK[4] = { 2, 5, 0, -7 };
:
:
}
Illegal Initialization!!!