☞ To perform the stack implementation, we must perform the following operations :
Create empty stack
Adding an element – push operation
Checking an empty stack (before performing delete operation)
Deleting an element – pop operation
Fetching top most element – peek operation
Display the stack