pow10f

Name

pow10f -- Base-10 power function

Synopsis

#include <math.h>

float pow10f(float x);

Description

The pow10f() function shall return 10x.

Note: This function is identical to exp10f().

Returns

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

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

See Also

exp10f(), pow10(), pow10l()