#include <math.h>
double log10(double x);
float log10f(float x);
log10() computes the decadic logarithm (the logarithm to base 10) of x.
log10(x), if x is greater than zero. If x is smaller then zero, NAN is returned; if it is equal to zero, log10() returns negative infinity. In both cases, errno is set to EDOM.
exp() and expf() and