Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 918 Bytes

README.md

File metadata and controls

46 lines (32 loc) · 918 Bytes

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
  1. Navigate to the project directory:
cd school-system
  1. Compile the application using a C compiler:
gcc -o school-system main.c
  1. 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