Explain stacks using dynamic arrays ? 

Data Structures and Algorithms

Answer in Short

: A stack is linear Data Sturcture in which items are added (pushed, inserted) and removed(pop, deleted) from one end called top

Explanation

1286
0