This program is an exercise developed for the Programming Topics course. It implements a simple FIFO queue using dynamic memory allocation to simulate customer service in a bank.
Enqueue
: Adds a customer to the end of the queue.Dequeue
: Removes the customer at the front of the queue (service).Peek
/Front
: Shows the customer that will be served next.Print
: Displays all customers currently in the queue.
- C Language (with dynamic memory allocation).
- Gabriel José Nonnemacher - GabrielNonnemacher
MIT License - See the LICENSE file for details.