pow10

Name

pow10 -- Base-10 power function

Synopsis

#include <math.h>

double pow10(double x);

Description

The pow10() function shall return 10x.

Note: This function is identical to exp10().

Returns

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

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

See Also

exp10(), pow10f(), pow10l()