home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / USCX / TURBO-07.ZIP / TESTDB.PAS < prev    next >
Pascal/Delphi Source File  |  1984-10-02  |  216b  |  14 lines

  1. program TestDB;
  2. type
  3.   Btype = array[1..17] of char;
  4. var
  5.  Decimal,j:integer;
  6.  Binary:Btype;
  7. {$i decbin.inc}
  8. begin
  9.   Decimal:=32766;
  10.   DecBin(Decimal,Binary);
  11.   for j:=2 to 17 do write(Binary[j]);
  12. end.
  13.  
  14.