explanation for prototype function in C?

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.

prototype function in C

In this example Name of the function is Sum, the return type is the integer data type and it accepts two integer parameters.
Posted on by