(ANSI Standard)
#include <math.h> z = pow( x, y );
"pow" returns "x" to the power "y". If "x" and "y" are both zero, or if "x" is non-positive and "y" is not an integer, "pow" return -HUGE_VAL and sets "errno" to EDOM. If the answer would cause an overflow, "pow" returns +HUGE_VAL.
Copyright © 1996, Thinkage Ltd.