1EXP10(3) Linux Programmer's Manual EXP10(3)
23
4
NAME
6exp10, exp10f, exp10l - base-10 exponential function
7
SYNOPSIS
9#define _GNU_SOURCE
10#include <math.h>
1112
double exp10(double x);
13float exp10f(float x);
14long double exp10l(long double x);
1516
Link with -lm.
17
DESCRIPTION
19The exp10() function returns the value of 10 raised to the power of x.
20
CONFORMING TO
22The function is a GNU extension.
23
SEE ALSO
25cbrt(3), exp(3), exp2(3), sqrt(3), feature_test_macros(7)
2627
28
29
GNU 2002-07-27 EXP10(3)