(C) 1998 AROS - The Amiga Research OS


NAME
#include <math.h>

double pow ()

SYNOPSIS
double base
double exp

FUNCTION
Compute the p'th power of b.

INPUTS
base
The base
exp
The exponent

RESULT
The p'th power of b.

EXAMPLE
// returns 8
pow (2,3);
SEE ALSO
sqrt()

NOTES

BUGS

INTERNALS

HISTORY
20.10.1998 hkiel
Amiga Research OS
20.05.1997 aros
Added a couple of floating point math functions from fdlibm by Sun.