Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 #includeStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started