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

PAUSE

If they want to quit, do so
    <<<<<< 4 BOTTOM LINES CLEANING SUBROUTINE >>>>>>

BOTCLEAN

If they want to quit, do so

ENCORE5

    <<<<<< REVIEW CLEANING SUBROUTINE >>>>>>

CLEAN

If they want to quit, do so

ENCORE

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

BOX

                       ILLUSTRATION                     


GO

  The constant is defined either through the compiler invocation:

                  cc  prog.c  -DCLEAR = 12

   or in the program itself:


                   #define   CLEAR   12
                    main()
                    {
                        mesg = CLEAR;
                        putchar(mesg);     /* clear screen   */
                    }

   The resulting effect in the program is shown above.

                       putchar(12);