Skip to content

πŸš€ Enterprise Applications Simulation System πŸš€ This C-based project lets you effortlessly manage student profiles, courses, and grades. Input data seamlessly, sort courses on-the-fly, and generate insightful reports with ease.

Notifications You must be signed in to change notification settings

VukIG/Enterprise-Application-Simulation-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

6 Commits
Β 
Β 
Β 
Β 

Repository files navigation

EPSS - Enterprise Applications Simulation System πŸš€

Introduction

This project aims to simulate an enterprise application system for managing students, their grades, and courses. The system is implemented in C and focuses on inputting and processing student data, course information, and grades. The program allows users to input student and course data, record grades, and generate reports.

Table of Contents

Requirements

To compile and run this program, ensure you have a C compiler installed on your system.πŸ› οΈ

Usage

  1. Clone the repository to your local machine.πŸ”„
  2. Compile the program using a C compiler.πŸ–₯️
  3. Run the compiled executable.▢️

Data Structures

1. Student Structure (ucenik)πŸŽ“

typedef struct ucenik {
    int index, brojpredmeta;
    char ime[30], prezime[30];
    struct ucenik *sledeci;
} ucenik;

  1. Course Structure (predmet)πŸ“š
typedef struct predmet {
    int sifra;
    char nazivpredmeta[30];
    int brojstudenata;
    struct predmet *sledeci;
} predmet;
  1. Grade Submission Structure (prijava)πŸ“
typedef struct prijava {
    int brojindeksa, sifra_pred, ocena;
    struct prijava *sledeci;
} prijava;

Functions

  • dodaj_na_pocetak: Adds a new element at the beginning of a linked list.βž•
  • dodaj_na_kraj: Adds a new element at the end of a linked list.βž•
  • unosucenik: Takes user input for student information and adds it to the student list.πŸ“€
  • unospredmet: Takes user input for course information and adds it to the course list.πŸ“€
  • unosprijava: Takes user input for grade submission and adds it to the grade list.πŸ“€
  • proveriimepredmeta: Checks if a course with the given name exists in the course list.βœ”οΈ
  • proveriimeucenika: Checks if a student with the given name and surname exists in the student list.βœ”οΈ
  • zameni: Swaps two grade submission elements.πŸ”„
  • sort: Sorts the course list based on the number of students in descending order.πŸ“Š
  • ispis_prijava: Prints the grade submissions.πŸ“„

About

πŸš€ Enterprise Applications Simulation System πŸš€ This C-based project lets you effortlessly manage student profiles, courses, and grades. Input data seamlessly, sort courses on-the-fly, and generate insightful reports with ease.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages