Go to the first, previous, next, last section, table of contents.


Array Bounds Expressions

g77 doesn't support more general expressions to dimension arrays, such as array element references, function references, etc.

For example, g77 currently does not accept the following:

SUBROUTINE X(M, N)
INTEGER N(10), M(N(2), N(1))


Go to the first, previous, next, last section, table of contents.