Next: , Previous: DCMPLX, Up: Intrinsic Procedures


7.55 DFLOAT — Double conversion function

Description:
DFLOAT(A) Converts A to double precision real type.
Standard:
GNU extension
Class:
Elemental function
Syntax:
RESULT = DFLOAT(A)
Arguments:

A The type shall be INTEGER.

Return value:
The return value is of type double precision real.
Example:
          program test_dfloat
              integer :: i = 5
              print *, dfloat(i)
          end program test_dfloat
     

See also:
DBLE, FLOAT, REAL