Discussion:
Q1. Transfer elements from stack s1 to stack s2 so that the elements from s2 are in the same order as on s1
a. using one additional stack.
Q2. Define a stack in term of the queue; that is, create a class
template
Class StackQ {
Queue pool;
.........................................
Void push(const T& el) {
Pool.enqueue(el);
Q3. Write a program to verify symbols balancing using stack