INTEGER*2 I, J/0/ REAL*4 PI/3.141592654/,ARRAY(10)/5*0.0,5*1.0/ CHARACTER*10 NAME CHARACTER*10 TITLE/'Heading'/
In the above example:
J is initialized to 0
PI is initialized to 3.141592654
The first five elements of ARRAY are initialized to 0.0
The second five elements of ARRAY are initialized to 1.0
TITLE is initialized to 'Heading'