Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aliesmaeil/school-system
School Management System, that manages students data registered at any level.
https://github.com/aliesmaeil/school-system
c crud crud-application file filesystem school-app school-management
Last synced: 2 days ago
JSON representation
School Management System, that manages students data registered at any level.
- Host: GitHub
- URL: https://github.com/aliesmaeil/school-system
- Owner: AliEsmaeil
- License: mit
- Created: 2024-08-20T07:00:28.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-20T07:55:09.000Z (3 months ago)
- Last Synced: 2024-08-20T09:09:02.489Z (3 months ago)
- Topics: c, crud, crud-application, file, filesystem, school-app, school-management
- Language: C
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## School Management System
This's a console application that's written in `C` designed to manage all students registered atin any level in a school.
### Table of contents
- 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.
1. Clone this repository:
```
git clone https://github.com/your-username/school-system.git
```2. Navigate to the project directory:
```
cd school-system
```3. Compile the application using a C compiler:
```
gcc -o school-system main.c
```4. 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