The function prototype
Informs the compiler that there will a function defined later that :
returns this type
has this name
takes these arguments
void PrintMessage (void);
Needed because the function call is made before the definition -- the compiler uses it to see if the call is made properly
Previous slide
Next slide
Back to first slide
View graphic version