Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question 1 Implement (write) a vold function, called openlibrary', that Initializes a dynamic array of book records) with the data stored in the file brary

image text in transcribed
image text in transcribed
Question 1 Implement (write) a vold function, called "openlibrary', that Initializes a dynamic array of book records) with the data stored in the file "brary Inventory.txt". The function has three formal parameters: the dynamic array LIB, the count, and the capacity, You should open and close an Ifstream Inside the function. Remember, you must allocate memory for the initial size of the dynamic array using "new" inside this function. If the array becomes full print the message "Library is Full". Also close the file, and exit the function. Read the values from the data file In the same order they appear in the record declaration. Consider the following declarations to help you write (implement) this function; assume these declarations occur before the function is called; therefore, there is no need to re-declare them: (DO NOT COMMENT CODE!) Declarations: book_record "LIB; const int CAPACITY - 25; //this is the capacity of the dynamic array LIB. int count=0; //holds the number of records being used in the dynamic array LIB. #book_record declaration class book_record public: string title; CONDICIONS Lecce function is called; therefore, there is no need to re-declare them: Declarations: book_record "LIB; const int CAPACITY = 25; //this is the capacity of the dynamic array LIB. int count =0; //holds the number of records being used in the dynamic array LIB. //book_record declaration class book_record { public: string title; string dd_number; int isle_no; 3: Edit View Insert Format Tools Table 12pt Paragraph BI U AR TV

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

DB2 Universal Database V7.1 Application Development Certification Guide

Authors: Steve Sanyal, David Martineau, Kevin Gashyna, Michael Kyprianou

1st Edition

0130913677, 978-0130913678

More Books

Students also viewed these Databases questions