FORTRAN 77 Language Reference

Syntax Rules


	POINTER ( p1, v1 ) [, ( p2, v2 ) ... ] 

The POINTER statement has the following syntax:

where:

A pointer-based variable is a variable paired with a pointer in a POINTER statement. A pointer-based variable is usually just called a based variable. The pointer is the integer variable that contains the address.

Example: A simple POINTER statement:


	POINTER ( P, V )

Here, V is a pointer-based variable, and P is its associated pointer.

See "POINTER", for more examples.