exp10

Name

exp10 -- Base-10 power function

Synopsis

#include <math.h>

double exp10(double x);

Description

The exp10() function shall return 10x.

Note: This function is identical to pow10().

Returns

Upon successful completion, exp10() shall return 10 rised to the power of x.

If the correct value would cause overflow, a range error shall occur and exp10() shall return ħHUGE_VAL, with the same sign as the correct value of the function.

See Also

pow10(), exp10f(), exp10l()