function parameter

Function Declaration Or Prototype

Before a function can be used, it must have first been declared. The function declaration, or prototype, tells the compiler how many parameters the function takes, the data type of each parameter, and the data type of the return value for the function.

Function Declaration Or Prototype Read More »