ex6.pp 219 B

123456789
  1. Program Example6;
  2. uses Dos;
  3. { Program to demonstrate the DiskSize and DiskFree function. }
  4. begin
  5. WriteLn('This partition size has ',DiskSize(0),' bytes');
  6. WriteLn('Currently ',DiskFree(0),' bytes are free');
  7. end.