Assignment:
Use the example on The elements Title, Author, Publisher, and Year enclosed between the braces in the definition above may also be referred to as members or fields of the BOOK structure. Each object of type BOOK contains the members Title, Author, Publisher, and Year. You can now create variables of type
BOOK in exactly the same way that you create variables of any other type:
BOOK Novel; // Declare variable Novel of type BOOK
This declares a variable with the name Novel that you can now use to store information about a book. All you need now is to understand how you get data into the various members that make up a variable of type BOOK of the text to create your own structure related to an overtime pay calculator and define the variables needed within your structure to perform those calculations.
Define and create a base class using the same variables that may serve the same function as the structure.