#include <math.h>
double exp (double x);
float expf(float x);
exp() computes ex, where e is the base of natural logarithms.
ex. If the computation fails because the value is too large, HUGE_VAL is returned and errno is set to ERANGE.
log10() and log10f(), and