A CLI (Command Line Interface) program written in C for managing student data (Roll No, Name, Marks). Users can perform CRUD operations and print records. The program utilizes linked lists for in-memory operations and file for persistent data storage.
For system requirements, please refer System_Requirements.txt file.
How to run the program?
Clone the repo, compile and run using following commands.
% gcc *.c -o students.out
Run with 'sudo' as we have to create file to store records.
% sudo ./students.out
Sample output screens are saved in Output directory.