C/C++
vardim.asc
Associated article: Calling C Functions with Variably Dimensioned Arrays
Tags: C/C++
_CALLING C FUNCTIONS WITH VARIABLY DIMENSIONED ARRAYS_
by John W. Ross
Example 1:
(a)
for ___= 1 to ___
for ___ = 1 to ___
for ___ = 1 to ___
cij= cij+ aik bkj
end
end
end
(b)
for i = 1 to m
for j = 1 to p
cij= 0
for k = 1 to n
...


