Prototype function is a declaration of a function with the following information to the compiler.
* Name of the function.
* The return type of the function.
* Parameters list of the function.
In this example Name of the function is Sum, the return type is the integer data type and it accepts two integer parameters.