Answered step by step
Verified Expert Solution
Question
1 Approved Answer
can I have help with this in .c? Scenario: Quality Preparatory School is seeking to create a program that will allow an administrator to manage
can I have help with this in .c?
Scenario: Quality Preparatory School is seeking to create a program that will allow an administrator to manage data about the schools' Library. The application should retain information on the Book Id, Book Name and Rental Price in an appropriate ADT. Task 1 Using your preferred IDE, create a file called DSLabTestl and append your student id number e.g. DSLabTest1_0123456789, where 0123456789 is your id number. Place your name and id number at the top of each source file as comments O O O Task 2 Create the necessary structures considering proper naming conventions and formatting techniques The Linked List should include: an InsertAtBack operation that adds a new node to the back of the list an AverageRentalPrice operation that returns the average rental costs of all the books in the list a CheapestBook operation that returns the book instance that has the cheapest Rental Price a DisplayList operation that outputs the data of each node in the list Format: [100, Data Structures 101, 45.5] -> [101, Programming 1, 28.9] -> NULL Create a Main function that: inserts three (3) books using the InsertAtBack operation calls and displays what is returned by the AverageRentalPrice operation calls the and displays all the attributes of the book returned by the CheapestBook operation calls the DisplayList operation o O O OStep 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