home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / C-ASM_VI.ARJ / PROGC.ZIP / PROGC044.C < prev    next >
Text File  |  1988-05-25  |  575b  |  15 lines

  1.  
  2. /************************************************************************/
  3. /* Scroll the screen by  6 lines up                                     */
  4. /************************************************************************/
  5.  
  6. sample_scroll_page()
  7.         {
  8.         int     i;
  9.         for (i = 0; i < 25; i++)        /* Fill screen with data        */
  10.                 printf("\nThis is line %d",i);
  11.  
  12.         getchar();                      /* Wait for <Enter>             */
  13.         scroll_page( 6);                /* Scroll page up by  6 rows    */
  14.         }
  15.