Giter Club home page Giter Club logo

enterprise-application-simulation-system's Introduction

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.๐Ÿ“„

enterprise-application-simulation-system's People

Contributors

vukig avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.