home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
PASCAL
/
MADTRB9.ZIP
/
TESTDB.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1984-10-02
|
216 b
|
14 lines
program TestDB;
type
Btype = array[1..17] of char;
var
Decimal,j:integer;
Binary:Btype;
{$i decbin.inc}
begin
Decimal:=32766;
DecBin(Decimal,Binary);
for j:=2 to 17 do write(Binary[j]);
end.