Special considerations for FORTRAN
Describes FORTRAN conventions for indexing, numbering.
Check row and column indices. FORTRAN conventionally
numbers from one (1 ), whereas C, C++,
Java, and other languages number from zero (0 ).
This difference in numbering conventions can lead to unexpected results
with regard to row and column indices when your application modifies
a problem or exercises query routines.
It is important that you use the FORTRAN declaration IMPLICIT NONE to
help you detect any unintended type conversions, because such inadvertent
conversions frequently lead to strange application behavior.