/* * project1 * Chapter 4 * John Stile * Purpose: Write a function called mycube that receives one integer argument and returns the cube of the integer it receives. */ #include #include int mycube(int xx) { return pow(xx,3); }