This project is a simple implementation of a Queue data structure using arrays in C language.
- Insert a person into the queue (Enqueue)
- Remove a person from the queue (Dequeue)
- Search a person by name
- Display all persons in the queue
- Array-based Circular Queue
- Struct used to store person details:
- Name
- Age
gcc main.c -o queue
./queue