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
| written 3.6 years ago by | • modified 3.6 years ago |
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 …