Lab1
1) In a college department, the administration maintains a list of student roll numbers for a
course using an array.
During the semester, the staff may need to:
Create the initial student list
Display the list
Insert a new roll number when a student enrolls
Delete a roll number when a student withdraws
Modify a roll number if a correction is required
Search for a roll number to check enrollment status
Merge two student lists (for example, when two sections are combined)
Write a menu-driven C++ program to perform all list operations using arrays.
2) Write a program to store record of students (using structure). The record must contain
(Name, registration number, gpa, semester). Store record of 10 students and display it at
standard output.