int square( int x ) { int r; // Define a local variable r = x * x; // Statement return ( r ); // Return statement }