C / math.h / pow
acos, asin, atan, atan2, ceil, cos, cosh, exp, fabs, floor, fmod, frexp, ldexp, log, log10, modf, » pow, sin, sinh, sqrt, tan, tanh,
Funcion: pow()
Sintaxis:
double pow(double x, double y);

Descripcion: Calcula x elevado a la potencia de y. Puede producirse un error de dominio si x es negativo e y no es un valor entero. También se produce un error de dominio si el resultado no se puede representar cuando x es cero e y es menor o igual que cero. Un error de recorrido puede producirse.


Ejemplo:
#include <stdio.h>
#include <math.h>
 
int main()
{
   double x = 6.54321, y = 0.56789;
 
   printf( "pow( %f, %f ) = %f\n", x, y, pow(x,y) );
   return 0;
}

Librerias C

Librerias ANSI C
   string.hcstring
   math.hcmath
   stdio.hcstdio
   time.hctime
   stdlib.hcstdlib
   ctype.hcctype
   locale.hclocale
   signal.hcsignal
   setjmp.hcsetjmp

Librerias Borland
   conio.h
   graphics.h