FORTRAN 77 Language Reference

Examples

Example 1: Each of these integer declarations are equivalent:


       INTEGER U, V(9) 
       INTEGER*4 U, V(9) 
       INTEGER U*4, V(9)*4 

Example 2: Initialize:


       INTEGER U / 1 /, V / 4 /, W*2 / 1 /, X*2 / 4 /