typedef enum {false, true} boolean; class int_stack { int sz; int top; int* stack; public: // Note that the stack is implicit void init(int nitems = 100); void push(int x); int pop(); boolean isempty(); boolean isfull(); };