| average2.c | Functional Average II |
Plain C does not have have classes; functions exist at the top level. The are called without a class or object name. C++ supports the same syntax; it has both top-level functions, and Java-like methods.
Parameters are passed by value.
But we will show some variations later.
| Functional Average II |