#include "Node.h" #include "Stack.h" void main() { Stack st1,st2,st3,st4,st5; Node node1(1,1,1,1,"Dame Heart"); Node node2; Node node3(1,1,1,1,"King Spade"); Node node4(1,1,1,1, "4 Club"); int n; node2=node1; st1+node2; // Equivalent to st1.add(node2);, st1(operator+(node2)); st2=st1; st1+node3; st3+st1; st4=node4; st4+st3; st5.copy(st4); n=st5.count(); st5.show(); int stam=17; }