Return To COSI 216 - HOME
Return to Handout
Return to Course Outline
Return to Chapter Seven

Function header:

For example: By the end of function,  if you have a "return" statement,
which kind of data type you return to the caller has to be
listed in the beginning of function header.

If main() calls Max(), then main() is the caller.
It is not user as caller.

Note:  When a function does not return any value
           to the calling program (Caller)
           or return more than one value,
           you must use the keyword void as the return class.