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