#include // Function definition int square(int n){ return n*n; } void main(){ // A function call int result = square(23); printf("23 squared was %d\n", result); // Another function call // Let's square the result printf("The result squared is %d\n", square(result)); }