Computer Science, asked by kakhil960, 1 month ago

what is stack ? explain it with is application​

Answers

Answered by pranamyasony
0

Answer:

Stack is an abstract data type and a data structure that follows LIFO (last in first out) strategy. It means the element added last will be removed first. Stack allows two operations push and pop. Push adds an element at the top of the stack and pop removes an element from top of the stack.

Similar questions