Next: DIGITS, Previous: DCMPLX, Up: Intrinsic Procedures
DFLOAT
— Double conversion functionDFLOAT(A)
Converts A to double precision real type.
RESULT = DFLOAT(A)
A | The type shall be INTEGER .
|
program test_dfloat integer :: i = 5 print *, dfloat(i) end program test_dfloat