#include int main( ) { float a = 4, b; b = square(a); printf("Square of %f = %f\n", a, b); } int square(int x) { return x*x; }