Function Prototype

Examples of function prototypes

double sqrt ( double n ) ;
int FindMinimum (int n1, int n2);
void PrintInstructions (void);

General form

return-type Name ( arg1, arg2, ... argn ) ;

Void