exp(x) computes the base exponential of x.
FORTRAN 77 and later
Elemental function?
result = exp(x)
x - The type shall be real or complex.The return value has same type and kind as x.
program test_exp
real :: x = 1.0
x = exp(x)
end program test_exp