Tools
dunteman.lst
Associated article: Structured Programming
Tags: Tools
_STRUCTURED PROGRAMMING COLUMN_
by Jeff Duntemann
[LISTING ONE]
PROGRAM ConformTest;
{ Demo program for Turbo Pascal 7.0 conformant arrays }
{ By Jeff Duntemann; From DDJ for January 1993 }
USES Crt;
VAR
I : Integer;
Manny : ARRAY[36..72] OF Integer;
Moe : ARRAY[0..137] OF Integer;
Jack : ARRAY[1..40] OF ...


