Next: ACOS, Previous: ACCESS, Up: Intrinsic Procedures
ACHAR — Character in ASCII collating sequenceACHAR(I) returns the character located at position I
in the ASCII collating sequence.
RESULT = ACHAR(I)
| I | The type shall be INTEGER(*).
|
CHARACTER with a length of one. The
kind type parameter is the same as KIND('A').
program test_achar
character c
c = achar(32)
end program test_achar