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