#include int main( int argc, char *argv[] ) { int a; int b; a = 4; b = square( a ); // Call function square printf( "Square of %d = %d\n", a, b); }