Student Record Management System
Write a C++ program which perform following operations:
Insert student record in a csv file comma separated value.
Insert at Start
Insert at End
Insert at Specific Position
Update student record (update name) in a csv file comma separated value.
Delete student record (delete by name) in a csv file comma separated value.
Student records consist of Name, age and contact number (comma separated data).
Each row of file contains a record of the student.
Example:
StudentInfo.txt
Ali ahmad,19,0333-1234567
Bilal malik,21,0321-1234567
Write a menu base program with the following menu:
Press 1 for insert student record in a csv file comma separated value
Press 2 for update student record in a csv file comma separated value
Press 3 for delete student record in a csv file comma separated value
Press 4 for display all student records of a csv file comma separated value
Press 5 for terminate the program
Comments
Leave a comment