├── SOURCE.CPP ├── Screenshots ├── 1.png ├── 2.png └── 3.png └── README.md /SOURCE.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idaljeetsingh/Hotel-Management-System/HEAD/SOURCE.CPP -------------------------------------------------------------------------------- /Screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idaljeetsingh/Hotel-Management-System/HEAD/Screenshots/1.png -------------------------------------------------------------------------------- /Screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idaljeetsingh/Hotel-Management-System/HEAD/Screenshots/2.png -------------------------------------------------------------------------------- /Screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idaljeetsingh/Hotel-Management-System/HEAD/Screenshots/3.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hotel Management System 2 | 3 | # Description: 4 | 5 | 6 | A C++ project that uses OOP concepts and File Handling to store the records of rooms in a .DAT file and let the operator to perform following operations: 7 | 8 | * Book a room 9 | * Check a customer record by entering room number 10 | * See all the alloted rooms 11 | * Edit a customer record 12 | 13 | 14 | # Limitations: 15 | 16 | The project is purely intended to be used in TurboC++ and the interface is also made keeping in mind the resolution of 640x480. 17 | The interface of program will change on running it on different screen resolutions. 18 | The project is still under development and may have bugs at different stages. 19 | 20 | # Screenshots: 21 | 22 | ![1](/Screenshots/1.png) 23 | 24 | ![2](/Screenshots/2.png) 25 | 26 | ![3](/Screenshots/3.png) 27 | --------------------------------------------------------------------------------