Starting from:

$30

CSE240- Homework 5 Solved

Introduction
The aim of this assignment is to make sure that you understand and are familiar with the concepts covered in the lectures, including basic C syntax, using structures and enumeration types.  By the end of the assignment, you should have

•         understood the concepts and operations of enumeration type, arrays, structures, and array of structures, and files.

•         written a program using enumeration type and an array of structures.

                         

Reading: Textbook Chapter 2, sections 2.5, and 2.6, and lecture slides covered. 

Exercising: Complete the multiple choice questions in Textbook Section 2.10. The answers of the questions are available in course Web page.

You are expected to do the majority of the assignment outside the class meetings.   Should you need assistance, or have questions about the assignment, please contact the instructor or the TA during their office hours.   

You are encouraged to ask and answer questions on the course discussion board.  However, do not share your answers or code in the course discussion board. Do not cooperate with your peers in doing the individual assignments. 

Programming Assignment (50 points)
1. You are given a partially completed program hw05q1.c. You should follow the instructions given in the program to complete the functions so that the program executes as instructed. The program declares a struct ‘bookDetails’ with elements for book name, publication year, library name and number of copies You will be completing a program that creates a list of books (array of structures). It is a menu-driven program where the user is given the following options:

a)     Add a new book to the list. When adding a new book to the list, the user is prompted for book name, publication year, library name and number of copies of the book. The book should be added at the end of the list. If the name of the book to add already exists in the list, then you should not add the book to the list. The library name is enum type.

b)    Display the list of books.

c)     Sort the list of books alphabetically by book name. The sorting should happen within the list. You should not create a new list of books having sorted books.

 

There is a save() already implemented to write the book list to a file ‘Book_List.txt’. save() is executed at the end of the program when the user quits the program. You need to implement load() which is called at the start of the program. This function will read the saved file and fill in the array of structures. You need to read the file in the same order and manner that it is saved in save().

 

Expected output of each function:

 

add:

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

display:

 

 

 



load:


More products