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 This is a GNU extension.
23
25 These functions are identical to the functions listed under exp10(3).
26
28 exp10(3), pow(3), feature_test_macros(7)
29
30
31
32 2004-10-05 POW10(3)