Other Alias
pow10f, pow10lSYNOPSIS
#define _GNU_SOURCE /* See feature_test_macros(7) */
#include <math.h>
double pow10(double x);
float pow10f(float x);
long double pow10l(long double x);
Link with -lm.
DESCRIPTION
These functions return the value of 10 raised to the power x.VERSIONS
These functions first appeared in glibc in version 2.1.ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7).| Interface | Attribute | Value |
| pow10(), pow10f(), pow10l() | Thread safety | MT-Safe |
