You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C++ Console Application | OODP Mini Project | 21CSC101T
Project Overview
A fully menu-driven C++ application for managing hostel maintenance complaints.
Students can raise, track, and review complaints. The admin can view, search,
filter, update status, assign staff, add remarks, and resolve or reject complaints.
All data is stored in plain-text files so it persists across runs.
# Step 1 — go to project foldercd hostel-cms-cpp
# Step 2 — compile
make
# Step 3 — run
./hostel_cms
# One command
make run
# Clean build files
make clean
# Manual compile (macOS without make)
clang++ -std=c++17 -I include src/*.cpp -o hostel_cms