0
14kviews
Implement a menu-driven program to perform the queue operations like insert, delete, display, isempty, and isfull using array in C language.
1 Answer
1
235views

Menu-driven Queue Program

  • The Queue is Abstract Data Type in which addition of an element to the collection performed at the Rear terminal position called ENQUEUE and removal of an element performed at Front terminal position called DEQUEUE.

  • Hence, Queue follows a First-In-First-Out (FIFO) data structure, the first element added …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.