A function prototype precedes the function definition and specifies the name, return type and a function's arguments.
function-prototype: type-specifier declarator ;
function-prototype
type-specifier
declarator
;
int add(int a, int b); void test();
Last updated 3 years ago