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

  1. Display Menu: View the current menu of food items with details such as name, price, and quantity.
  2. Place Order: Customers can place orders by specifying their name, the item they want to order, and the quantity.
  3. Display Order Queue: View the current orders in the queue, including customer names, item names, quantities, and prices.
  4. Admin Login: Authenticate as an admin to access additional features.
  5. Admin Features:
  6. Save Menu to File: The system saves the current menu to a file named "menu.txt" to persist data between sessions.
  7. File Operations:

Usage

  1. 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