Function Prototypes
A function prototype precedes the function definition and specifies the name, return type and a function's arguments.
Syntax
function-prototype
:
type-specifier
declarator
;
Example
Last updated
A function prototype precedes the function definition and specifies the name, return type and a function's arguments.
function-prototype
:
type-specifier
declarator
;
Last updated