FORTRAN 77 Language Reference

Assumed-Size Arrays

An assumed-size array is an array that is a dummy argument, and which has an asterisk as the upper bound of the last dimension.

You can declare assumed-size arrays in the usual DIMENSION, COMMON, or type statements.

Ihe following f77 extensions allow you to:@

Example: Assumed-size with the upper bound of the last dimension an asterisk:


	SUBROUTINE PULLDOWN ( A, B, C ) 
	  INTEGER A(5, *), B(*), C(0:1, 2:*)

An assumed-size array cannot be used in an I/O list.