// the find
AP24110010120/SRMs-
📌 Student Ticketing / Helpdesk System (C Project) A simple Queue-based Ticket Management System built using C lang
A student project implementing a helpdesk ticket queue in C using a linked-list. It covers user registration/login, CRUD operations on tickets, and file persistence. Audience is CS students learning data structures, not anyone building production tooling.
Correctly models a queue with FIFO semantics via a linked list rather than reaching for an array with a fixed size. Separates ticket logic into its own translation unit (ticket.c/ticket.h), which is the right instinct for a C project of this scope. File persistence means state survives restarts, which at least makes it a runnable demo rather than a toy that resets every run.
Credentials stored in plaintext in a .txt file — passwords are not hashed, so this is a teaching example of exactly what not to do in any real system. Committing compiled .exe binaries to the repo is a red flag for reproducibility and a mild security concern. No input validation visible from the README, which in C means buffer overflows are likely lurking in any scanf or gets calls. Zero stars, no tests, no CI — this is a single-submission assignment, not a maintained project.