A simple and efficient Hotel Management System implemented in both C and C++. This project provides a basic solution for managing food services in a hotel, including adding items to the menu and generating customer bills.
- Add items to customer order
- View and manage the menu
- Generate and display bills
- Table-based order system
The system is available in two programming languages:
- C implementation (
C_Code.cpp) - C++ implementation (
C++_Code.cpp)
- C/C++ compiler (GCC or any standard compiler)
- Basic understanding of command-line operations
For C++ version: g++ C++_Code.cpp -o hotel_management_cpp
For C version: g++ C_Code.cpp -o hotel_management_c
After compilation, run the executable:
For C++ version: ./hotel_management_cpp
For C version: ./hotel_management_c
- Launch the program
- Choose a table number
- Add menu items to the order
- View the total bill at any point
- Follow the on-screen instructions for further operations
This Hotel Management System offers a simple and practical solution for managing food orders, tables, and billing in a hotel or restaurant setting.
Whether you're learning C/C++ or exploring how basic systems operate behind the scenes, this project serves as a great starting point.
Feel free to modify, enhance, or contribute to make it even better!