#include #include "StackWithLinkedList.h" #include using namespace std; int main() { Stack stack1; for (int i = 0; i < 10; i++) stack1.push(i); while (!stack1.empty()) cout << stack1.pop() << " "; cout << endl; Stack stack1; stack1.push("A"); stack1.push("B"); stack1.push("C"); while (!stack1.empty()) cout << (stack1.pop()) << " "; return 0; }