#include #include /* powf fun and games */ int main() { float x, y, z; x = 5.0; y = 3.0; z = powf(x, y); printf("%f to the power of %f equals %f\n", x, y, z); }