Function Definitions
- The Function Definition is made up of the Function Header followed by
the Function Body.
- Function Header is the same as the function prototype with two
exceptions:
- No semi-colon at the end
- The function's arguments must have descriptive variable names.
- General Form:
returnType Name (arg1, arg2, ... , argn) {
sequence of statements to be executed and returns;
}
Last Modified 26 September 2000