sourCEntral - mobile manpages

pdf

POW10

名前

pow10, pow10f, pow10l - 底が 10 の累乗関数

書式

#define _GNU_SOURCE /* feature_test_macros(7) 参照 */
#include <math.h>

double pow10(double x);
float pow10f(float
x);
long double pow10l(long double
x);

-lm でリンクする。

説明

これらの関数は 10 の x 乗の値を返す。

Note well: 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.

バージョン

These functions first appeared in glibc in version 2.1. Since glibc 2.27, the use of these functions in new programs is no longer supported.

属性

この節で使用されている用語の説明については、 attributes(7) を参照。

img

準拠

これらの関数は、非標準の GNU による拡張である。

関連項目

exp10(3), pow(3)

この文書について

この man ページは Linux man-pages プロジェクトのリリース 5.10 の一部である。プロジェクトの説明とバグ報告に関する情報は https://www.kernel.org/doc/man-pages/ に書かれている。

pdf