home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / OS2UTIL.ZIP / MB.C < prev    next >
C/C++ Source or Header  |  1990-05-21  |  238b  |  18 lines

  1. #define INCL_DOSMEMMGR
  2.  
  3. #include <os2.h>
  4. #include <stdio.h>
  5.  
  6. int main(void);
  7.  
  8. main()
  9. {
  10.     ULONG mem;
  11.  
  12.     DosMemAvail(&mem);
  13.     printf("memory available: %lu bytes = %f MB\n", mem, mem/1024.0/1024.0);
  14.  
  15.     return 0;
  16.  
  17. }
  18.