home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / MADTRB9.ZIP / TESTDB.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1984-10-02  |  216 b   |  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.