#include #include #include int top=-1; void pushfunc(void); void popfunc(void); class stack { private: int array[10]; public: void push(void) { if(top==9) { cout<<"Over flow ";getch(); } else { cin>>array[++top]; } } void pop(void) { if(top<=-1) { cout<<"Under flow "<>choice; switch(choice) { case 1: pushfunc(); continue; case 2: popfunc(); continue; case 3: clrscr(); cout<