Go to the first, previous, next, last section, table of contents.
#include <math.h> double log10(double x);
This function computes the base-10 logarithm of x.
The logarithm base 10 of x. If x is zero, a negative
infinity is returned and errno
is set to ERANGE
. If
x is negative or +Inf
or a NaN
, the return value is
NaN
and errno
is set to EDOM
.
ANSI, POSIX
Go to the first, previous, next, last section, table of contents.