pow()

#include <math.h>

double pow( double real1, double real2 );

This function returns real1real2. If real1 is negative and real2 is not an integer an error will occur.

See also: exp().


Back to Essential C Functions.

Log in or register to write something here or to contact authors.