pow10

Autres langues

Langue: de

Version: 6. April 2006 (openSuse - 09/10/07)

Section: 3 (Bibliothèques de fonctions)

BEZEICHNUNG

pow10, pow10f, pow10l - Potenzfunktionen mit der Basis 10

ÜBERSICHT


#define _GNU_SOURCE

#include <math.h>



double pow10(double x);


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

Mit der Option -lm linken.

BESCHREIBUNG

Die pow10() Funktion gibt die x-te Potenz von 10 zurück.

KONFORM ZU

Dies ist eine GNU-Erweiterung.

ANMERKUNG

Diese Funktionen sind identisch mit jenen, welche unter exp10(3) aufgelistet sind.

SIEHE AUCH

exp10(3), pow(3).