#include #include "stack.h" #include "stack.cpp" using namespace std; int main() { stack stk; cout << "---------------------- Test construct ----------------------" << endl; stk.display(); cout << "---------------------- Test isEmptyStack ----------------------" << endl; if(stk.isEmptyStack()) cout << "PASS" < stk1; cout << "stk current: "<< endl; stk.display(); cout << endl << "Assign stk1 = stk "<< endl; stk1 = stk; stk1.display(); cout << endl<< "After pushing 8 9 10 into stk1:" <