logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

pow10, pow10f, pow10l - base-10 power functions

Attributes

       For an explanation of the terms used in this section, see attributes(7).
       ┌─────────────────────────────────────────────────────────────────────────────┬───────────────┬─────────┐
       │ InterfaceAttributeValue   │
       ├─────────────────────────────────────────────────────────────────────────────┼───────────────┼─────────┤
       │ pow10(), pow10f(), pow10l()                                                 │ Thread safety │ MT-Safe │
       └─────────────────────────────────────────────────────────────────────────────┴───────────────┴─────────┘

Description

       These functions return the value of 10 raised to the power x.

       Notewell: These functions perform exactly the same task as the functions described in exp10(3), with the
       difference  that  the  latter  functions are now standardized in TS 18661-4:2015.  Those latter functions
       should be used in preference to the functions described in this page.

Library

       Math library (libm, -lm)

Name

       pow10, pow10f, pow10l - base-10 power functions

See Also

exp10(3), pow(3)

Linux man-pages 6.9.1                              2024-05-02                                           pow10(3)

Standards

       GNU.

Synopsis

#define_GNU_SOURCE         /* See feature_test_macros(7) */
       #include<math.h>doublepow10(doublex);floatpow10f(floatx);longdoublepow10l(longdoublex);

Versions

       glibc 2.1.  Removed in glibc 2.27.

See Also