UCS 1312  Exercise 2: Array Implementation of list ADT

$30.00

Category: You will Instantly receive a download link for .zip solution file upon Payment || To Order Original Work Click Custom Order?

Description

5/5 - (2 votes)

Create a list of 5 student records (using array of structure) with the fields
Regno
Name
Marks in 5 subjects
Perform the following operations
1. Insert a record in the front of the list
2. Insert a record at the end of the list
3. Insert a record after a given Regno in the list
4. Search a given record in the list based on Name
5. Delete a given student record
6. Display all students’ record
7. Display the previous and next record of a given student
Note:
3 files need to be maintained.
1. Structure and function definitions
2. Function prototypes
3. Application