0
22kviews
Implement a menu-driven program to perform the stack operations like push, pop, display, isempty, and isfull using array in C language.
1 Answer
0
516views

Menu-driven Stack Program

  • The Stack is an Abstract Data Type in which the addition of an element to the collection is called PUSH and the removal of an element called POP.

  • Stack follows a Last-In-First-Out (LIFO) data structure, the last element added to the structure must be the first one …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.