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 >
Wrap
Text File
|
1988-05-25
|
575b
|
15 lines
/************************************************************************/
/* Scroll the screen by 6 lines up */
/************************************************************************/
sample_scroll_page()
{
int i;
for (i = 0; i < 25; i++) /* Fill screen with data */
printf("\nThis is line %d",i);
getchar(); /* Wait for <Enter> */
scroll_page( 6); /* Scroll page up by 6 rows */
}