#include #include class int_stack { class node { public: int data; node* next; }; node* new_node(int d, node* n); node* top; public: // Note that these are prototype access functions void init(int nitems = 100); void push(int x); int pop(); bool isempty(); bool isfull(); };