Showing changes from revision #1 to #2:  
        Added | Removed | Changed  
    
exp(x) computes the base  exponential of x.
Fortran 77 and laterFORTRAN 77 and later
Elemental functionElemental 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