home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / C-ASM_VI.ARJ / PROGC.ZIP / PROGC029.C < prev    next >
Text File  |  1988-04-10  |  504b  |  12 lines

  1.  
  2. /************************************************************************/
  3. /* Get amount of RAM on EGA, using library function and print it        */
  4. /************************************************************************/
  5.  
  6. print_memory_size()
  7.         {
  8.         int     memory;                 /* Declare variables            */
  9.         memory = get_memory_size();     /* Get memory size              */
  10.         printf("\n%dKBytes of Memory Available", memory); /*Print it    */
  11.         }
  12.