home *** CD-ROM | disk | FTP | other *** search
-
- /************************************************************************/
- /* Get amount of RAM on EGA, using library function and print it */
- /************************************************************************/
-
- print_memory_size()
- {
- int memory; /* Declare variables */
- memory = get_memory_size(); /* Get memory size */
- printf("\n%dKBytes of Memory Available", memory); /*Print it */
- }