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 >
Wrap
Text File
|
1988-04-10
|
504b
|
12 lines
/************************************************************************/
/* 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 */
}