Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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