In this chapter, we will create a couple of C++ source code projects. We will start with a blank sheet and build our projects from the ground up, one code snippet at a time. The projects will increase in complexity as we progress through the code. Let us get started.
Project I: Book Inventory
Create a Book class with basic functionality (two data members, two constructors, a couple of getters and setters, and an arbitrary utility member function).
In function ...