| Next | The Identity Function | 19 | 
        a[i]  ===  *(a + i x SIZE)
Fortran does have arrays
However, they start at 1
In Fortran:
        A(I) ===  *(address(A) + (I-1) x SIZE)
(Except of course, Fortran has no * and no address operators)
| Next |  | Copyright © 2001 M. J. Dominus |