Using Functions
Do a function prototype declaration before using the function. The prototype tells the compiler about the data type of the input parameters and the data type of return value. The word void is used if the function has no input parameter or return value.
Define the function any where in a file.
Call a function by naming it, or use it in an expression.