Question: C++ Write a Textbook Information Viewing program. This project requires a user-defined struct type A book.h header file, declared below, is used to represent each



C++
Write a Textbook Information Viewing program. This project requires a user-defined struct type A book.h header file, declared below, is used to represent each textbook record in the system and functions that you need to implement. Implement the declared textbook functions in a file named book.cpp. Develop a program, name proj01.cpp, to read from input textbook data record file and create a list of textbook records. The input data file can store up to 35 textbook records. This program can perform 2 functions List: to list all the textbook records read from the input file Find: to lookup a specific textbook record by the input ISBN number. The ISBN number is an alphanumeric value . Your program will read all input from the command line, no prompting for user input and hardcoding for input file name. The required program output is provided below Declaration of Book struct: // @file book.h #ifndef BOOK H #define BOOK H #include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
