exp()

Exponential function

Synopsis

float exp( float x );

Parameters

Parameter Description
x value

Return value

In the event of an error, the function returns 0.0.

Error

Description

Returns the exponential function of x.

Example

main()
{
  float f;
  f=exp(log(10)); // natural 10
}

Assignment

Mathematical functions

Availability

CTRL