Mega Code Archive

 
Categories / C / Code Snippets
 

Returns base raised to the exp power (base^exp)

//Declaration: float powf(float base, float exp); double pow(double base, double exp); long double powl(long double base, long double exp); #include <math.h> #include <stdio.h> int main(void) { double k = 10.0, j = 0.0; do { printf("%f\n", pow(k, j)); j++; } while(j<11.0); return 0; } /* 1.000000 10.000000 100.000000 1000.000000 10000.000000 100000.000000 1000000.000000 10000000.000000 100000000.000000 1000000000.000000 10000000000.000000 */