97: Mainline
Note also that you must declare data types for
parameters and
returned values when you define a C++
function:
- You declare the data type of each parameter in each function
at the place where you introduce the parameter.
- You declare the data type of the value returned by
each function in every C++ program at the place where you name
the function to be defined.