Saved searches
Use saved searches to filter your results more quickly
Cancel Create saved search
Sign up Reseting focus
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.
The Cafeteria Management System is a console-based application written in C that helps manage food items, orders, and customer interactions within a cafeteria. It incorporates data structures such as linked lists, stacks, and queues to efficiently handle various operations.
License
Notifications You must be signed in to change notification settings
ariful305/cafeteria-management-system-in-c
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Go to file
Folders and files
Last commit message
Last commit date
Latest commit
History
View all files
Repository files navigation
Cafeteria Management System
This is a simple Cafeteria Management System implemented in C. The system allows users to manage a menu of food items, place orders, and perform administrative tasks such as adding, editing, and deleting food items. The system also includes features to display order summaries, manage a stack of orders for each table, and process orders from a queue.
Features
- Display Menu: View the current menu of food items with details such as name, price, and quantity.
- Place Order: Customers can place orders by specifying their name, the item they want to order, and the quantity.
- Display Order Queue: View the current orders in the queue, including customer names, item names, quantities, and prices.
- Admin Login: Authenticate as an admin to access additional features.
- Admin Features:
- Add Food Item: Add a new food item to the menu.
- Edit Food Item: Modify the details of an existing food item.
- Delete Food Item: Remove a food item from the menu.
- Place Order: Admins can also place orders on behalf of customers.
- Display Order Summary: View a summary of all placed orders, including total sales.
- Display Stack: View the current stack of orders for each table.
- Display Order Queue: View the current orders in the queue.
- Process One Order: Process and dequeue one order from the queue.
- Save Menu to File: The system saves the current menu to a file named "menu.txt" to persist data between sessions.
- File Operations:
- Load Menu from File: Load the menu from the "menu.txt" file at the start of the program.
- Save Menu to File: Save the current menu to the "menu.txt" file.
Usage
- Clone the repository:
git clone https://github.com/your-username/cafeteria-management-system.git
gcc cafeteria_management_system.c -o cafeteria_management_system
./cafeteria_management_system
Note
- The system uses a simple text file ("menu.txt") to store the menu items. Make sure the file is present in the same directory as the executable.
- Admin credentials are hardcoded as follows:
- Username: admin
- Password: 123
Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or create a pull request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
About
The Cafeteria Management System is a console-based application written in C that helps manage food items, orders, and customer interactions within a cafeteria. It incorporates data structures such as linked lists, stacks, and queues to efficiently handle various operations.