/* * Project1.c * Chapter 5 * John Stile * Purpose: Write a function that calculates the product of it's two float * arguments and returns the product to whatever it is called. */ #include float product(float xx, float yy) // header for function product, takes 2 floats, returns one float { return xx*yy; // multiply yy by xx, and return output to calling function }