ACHAR(I)
returns the character located at position I
in the ASCII collating sequence.
Fortran 77 and later, with KIND argument Fortran 2003 and later
Elemental function
RESULT = ACHAR(I [, KIND])
I | The type shall be INTEGER . |
KIND | (Optional) An INTEGER initialization expression indicating the kind parameter of the result. |
The return value is of type CHARACTER
with a length of one. If the KIND argument is present, the return value is of the specified kind and of the default kind otherwise.
program test_achar character c c = achar(32) end program test_achar
See ICHAR for a discussion of converting between numerical values and formatted string representations.
© Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
https://gcc.gnu.org/onlinedocs/gcc-7.2.0/gfortran/ACHAR.html