<<<<<< TIME POSE SUBROUTINE >>>>>>>>>

PAUSE

If they want to quit, do so
   <<<<< TERMINAL SCREEN DRAWING SUBROUTINE >>>>>>>>

UTERMINAL

                    TERMINAL                  

NEXT

 $V1$
                                              
    <<<<<< REVIEW CLEANING SUBROUTINE >>>>>>

ENCORE

    <<<<<< CLEAN THE INSIDE OF BOUNDED ARE ONLY >>>>>

BOX

                       ILLUSTRATION                     


GO

  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!!!