This's a console application that's written in C
designed to manage all students registered atin any level in a school.
- Features
- Usage
- Applied Concepts
Features
The user can add, update, search and delete a student record.
Usage
Although it's a console application, it performs the core operations required for a GUI-based system.
- Clone this repository:
git clone https://github.com/your-username/school-system.git
- Navigate to the project directory:
cd school-system
- Compile the application using a C compiler:
gcc -o school-system main.c
- Run the application:
./school-system
Make sure you have a C/C++ compiler installed on your environment.
Applied Comcepts
- Structured Data (Modeling)
- Local Storage (File-based)
- File CRUD operations
- Procedural Programming Paradigm