exp10f

Name

exp10f -- Base-10 power function

Synopsis

#include <math.h>

float exp10f(float x);

Description

The exp10f() function shall return 10x.

Note: This function is identical to pow10f().

Returns

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

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

See Also

pow10f(), exp10(), exp10l()