void stackPush(int x) { stackNode * element = new stackNode(x); element -> next = top; top = element; cout << "Element pushed" << "\n"; size++; }