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 >
Text File  |  1988-04-10  |  426b  |  11 lines

  1.  
  2. /************************************************************************/
  3. /* Get current page size using the library function and print it        */
  4. /************************************************************************/
  5.  
  6. print_page_size()
  7.         {
  8.         printf("\nPage size = %d",              /* Print page size      */
  9.                      get_page_size());          /* Get page size        */
  10.         }
  11.