Database
porter.lst
Associated article: Structured Programming
Tags: Database
_Structured Programming Column_
by Kent Porter
Listing One
Program maddints;
{ This program illustrates addition of two 180 x 180 integer }
{ matrices A and B, storing the results in a similar matrix C }
Const max = 180; { maximum columns/rows per square array }
Type arrayPtr = ^...


