Function C Tutorial

#include 
int cubeByValue( int n );
int main()
{
   int number = 5; 
   printf( "The original value of number is %d", number );
   
   /* pass number by value to cubeByValue */
   number = cubeByValue( number );
   printf( "\nThe new value of number is %d\n", number );
   return 0;
}
int cubeByValue( int n ) {
   return n * n * n;   
}
The original value of number is 5
The new value of number is 125