Implementation of stack using array in C programming - Code Ambition

Опубликовано: 19 Июнь 2026
на канале: Code Ambition 2K
694
10

Stack is a part of linear data structure . It is an algorithm which define how to store and retrive the data in an array or linkedlist.The rule used in stack is LIFO(Last In First Out).There is three operation performed on stack.
1.push()
2.pop()
3.peep()
push():-It is an operation which is used to store the data in stack.

pop():-It is an operation which used to retrive the data from stack.

peep():-It is an operation which is used to display the all data of stack.


#stack #codeambition #trending #stayhomewithme #WithMe