#include <math.h> double pow(double x, double y);
include <stdio.h> #include <math.h> int main() { printf ("2^10 = %f\n", pow(2, 10)); return 0; }
./pow 2^10 = 1024.000000