Skip to content

charmipatel12/Queue-Implementation-in-C

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Queue Implementation in C

This project is a simple implementation of a Queue data structure using arrays in C language.


Features

  • 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

Data Structure Used

  • Array-based Circular Queue
  • Struct used to store person details:
    • Name
    • Age

How to Compile and Run

Using GCC compiler:

gcc main.c -o queue
./queue

About

A C program that implements a circular queue with operations like enqueue, dequeue, search, and display using structures.

Topics

Resources

Stars

3 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages