Top: f77 Up: 8,2 - Arrays
Previous: 8,2,1 - Declarators Next: 8,3 - Array_Name_Reference
Section 8,2,2: Subscripts
A subscript qualifies an array name. A subscript is a list of
expressions, called subscript expressions, enclosed in parentheses,
that determine which element in the array is referred to. The
subscript is appended to the array name it qualifies. A subscript
has the form:
(s[,s]...) s is a subscript expression
A one-dimensional array is stored with its first element in the
first storage location and its last element in the last storage
location of the sequence. A multidimensional array is stored so
that the leftmost subscripts vary most rapidly.
Top: f77 Up: 8,2 - Arrays
Previous: 8,2,1 - Declarators Next: 8,3 - Array_Name_Reference