nThe typical way of getting something done in C++ is to call (invoke) a function to do it.
nIn addition to required main()
function, C++ program can also contain
any number of additional
function.
nPurpose
nMake code reusable
nMake program understandable
nA function cannot be called unless it has been previously declared and implemented.