An open API service indexing awesome lists of open source software.

https://github.com/ganeshjadhavongithub/students-data-c

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.
https://github.com/ganeshjadhavongithub/students-data-c

c c-programming crud crud-application crud-operations crud-sample data-structures data-structures-and-algorithms dsa file file-handling file-handling-in-c files linked-list students-data students-database students-project

Last synced: 2 months ago
JSON representation

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.

Awesome Lists containing this project

README

          

# students-data-c
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.