Array programming: Difference between revisions

Content deleted Content added
Jolly man (talk | contribs)
Line 26:
}
}
 
'''PASCAL'''
for i:=1 to n do
for j:=1 to n do
a[i,j] := a[i,j] + b[i,j];
 
This need to loop and index to perform operations on arrays is both tedious and error prone.