NAME pow - compute power function SYNOPSIS float pow(float x, float y) DESCRIPTION The value x ** y is computed and returned. The argument x must not be negative, or E_INVARG will be generated. If the result is too large or too small, E_OVERFL is generated. SEE ALSO exp, log, log10