May 2002
Beginner
320 pages
6h 18m
English
Before you can use a function, you must first define the function header and then the function body.
A function header definition consists of the function's return type, name, and argument list. Figure 7.2 illustrates the parts of the function header.

Parameters or Arguments?
The values passed to a function are its arguments. Arguments come in two flavors: formal (in the function header) and actual (in the function call). Formal arguments are also called parameters. Actual arguments are the ... |
Read now
Unlock full access