This is a command-line based Parking Management System built in C++. It includes admin login, billing calculation, receipt generation, and vehicle tracking.
- Admin authentication
- Park and remove vehicles
- Duration tracking
- Billing at ₹10 per hour
- Receipts saved in
receipt.txt
- C++
- Standard Library (iostream, fstream, vector, ctime)
parking-management-system-advanced/
├── main.cpp
├── vehicle.cpp
├── vehicle.h
├── billing.cpp
├── billing.h
├── auth.cpp
├── auth.h
├── receipt.txt
├── Makefile
└── README.md
Option 1: Using make
make
./parking_systemOption 2: Using g++ directly
g++ main.cpp vehicle.cpp billing.cpp auth.cpp -o parking_system
./parking_systemAll receipts will be appended in:
receipt.txt
Created by Harsh Verma