exp function in C
The exp function in C computes the base-e exponential of x. A range error occurs if the magnitude of finite x is too large. The x is the argument that is passed into the exp(). It is declared in math.h and takes one argument in the form of double and returns the value of type double. Syntax […]