ch08/between.cppI have uploaded them into [ ch06/ ]
For example -- a program that simulates a card game will need to model a deck of cards. Don't declare
Instead declare
class Card
{
...
int suit;
int rank;
};plus
vector <Card> deck(52);
As a rule the closer the language in your program reflects the real world the easier the program will be to grow. An in the real world programs grow and grow for ever.