1POW10(3) Linux Programmer's Manual POW10(3)
2
3
4
6 pow10, pow10f, pow10l - base-10 power functions
7
9 #define _GNU_SOURCE
10 #include <math.h>
11
12 double pow10(double x);
13 float pow10f(float x);
14 long double pow10l(long double x);
15
16 Link with -lm.
17
19 The pow10() function returns the value of 10 raised to the power x.
20
22 These functions first appeared in glibc in version 2.1.
23
25 This is a GNU extension.
26
28 These functions are identical to the functions listed under exp10(3).
29
31 exp10(3), pow(3), feature_test_macros(7)
32
34 This page is part of release 3.22 of the Linux man-pages project. A
35 description of the project, and information about reporting bugs, can
36 be found at http://www.kernel.org/doc/man-pages/.
37
38
39
40 2008-08-11 POW10(3)