Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!

Idiom #305 Calculate exponentiation of real numbers

Compute and print a^b, and a^n, where a and b are floating point numbers and n is an integer.

#include <stdio.h>
#include <math.h>
printf("%f %f", pow(a, b), pow(a, n));

New implementation...