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