pow10l

Name

pow10l -- Base-10 power function

Synopsis

#include <math.h>

long double pow10l(long double x);

Description

The pow10l() function shall return 10x.

Note: This function is identical to exp10l().

Returns

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

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

See Also

exp10l(), pow10(), pow10f()