C++ Struct Array

profileaalaz

In c++:

  1. Create a struct called Book
  2. A Book is made up of a title, author, cost, and publication year as described above
  3. Create an array of type Book that can store 5 books
    This organizational scheme is thus called an Array of Structures
  4. Have the user enter in all the information for each book
  5. Ask the user which number book they want the information for
  6. Print the corresponding book's information to the screen
    • 6 years ago
    • 8
    Answer(0)