Name
log function — Computes natural logarithm
Synopsis
float log(float x)
double log(double x)
long double log(long double x)
The log
function returns
the natural (base e
) logarithm
of its argument. A domain error occurs if x
is negative. A range error might occur
if x
is 0
.