Next: ICHAR, Previous: HUGE, Up: Intrinsic Procedures
IACHAR
— Code in ASCII collating sequenceIACHAR(C)
returns the code for the ASCII character
in the first character position of C
.
I = IACHAR(C)
C | Shall be a scalar CHARACTER , with INTENT(IN)
|
INTEGER
and of the default integer
kind.
program test_iachar integer i i = iachar(' ') end program test_iachar