Table of Contents
Previous Section Next Section

log10

#include <cmath>float log10(float num);double log10(double num);
long double log10(long double num);

The log10( ) function returns the base 10 logarithm for num. A domain error occurs if num is negative, and a range error occurs if the argument is zero.

A related function is log( ).


Table of Contents
Previous Section Next Section