// Stack #include #include "Stack.h" using namespace std; void print(Stack s){ while(!s.empty()){ cout< s; s.push('A'); s.push('B'); s.push('C'); print(s); print(s); return 0; }