home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-ASM_VI.ARJ
/
PROGC.ZIP
/
PROGC025.C
< prev
next >
Wrap
Text File
|
1988-04-10
|
426b
|
11 lines
/************************************************************************/
/* Get current page size using the library function and print it */
/************************************************************************/
print_page_size()
{
printf("\nPage size = %d", /* Print page size */
get_page_size()); /* Get page size */
}