INSTRUCTIONS



Stack

Stack is FIFO data structure.

You can push and pop element out from a Stack.
PUSH : Adding an element at the top of the stack.
PULL : Deleting an element at the top of the stack.

STACK