Next: CHDIR, Previous: CEILING, Up: Intrinsic Procedures
CHAR — Character conversion functionCHAR(I [, KIND]) returns the character represented by the integer I.
     RESULT = CHAR(I [, KIND])
     | I | The type shall be INTEGER(*). | 
| KIND | (Optional) An INTEGER(*)initialization
                      expression indicating the kind parameter of
		      the result. | 
CHARACTER(1)
               program test_char
              integer :: i = 74
              character(1) :: c
              c = char(i)
              print *, i, c ! returns 'J'
          end program test_char