Next: IALL, Previous: HYPOT, Up: Intrinsic Procedures [Contents][Index]
IACHAR — Code in ASCII collating sequenceRESULT = IACHAR(C [, KIND])
IACHAR(C) returns the code for the ASCII character
in the first character position of C.
Elemental function
| C | Shall be a scalar CHARACTER, with INTENT(IN) |
| KIND | (Optional) A scalar INTEGER constant
expression indicating the kind parameter of the result. |
The return value is of type INTEGER and of kind KIND. If
KIND is absent, the return value is of default integer kind.
program test_iachar
integer i
i = iachar(' ')
end program test_iachar
See ICHAR for a discussion of converting between numerical values and formatted string representations.
Fortran 95 and later, with KIND argument Fortran 2003 and later