Returns a base number raised to an exponent.
float pow(float base,
float exponent )
base is the
base number you want to raise to the exponent. A negative base number
with a decimal component causes an error message.
exponent is
the exponent.
Examples
Returns 8.
Returns -8.
Returns 0.125.