pow10

Autres langues

Langue: ja

Autres versions - même langue

Version: 2004-10-05 (fedora - 25/11/07)

Section: 3 (Bibliothèques de fonctions)

名前

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

書式

 #define _GNU_SOURCE
 #include <math.h>
 
 double pow10(double x);
 
float pow10f(float x);
long double pow10l(long double x);

-lm でリンクする。

説明

pow10() 関数は 10 の x 乗の値を返す。

準拠

これは GNU による拡張である。

注意

これらの関数は exp10(3) でリストされている関数と同一である。

関連項目

exp10(3), pow(3), feature_test_macros(7)