Dr. Dobb's Journal February 1998
class Stack { public: Stack(); ~Stack(); void push(char *value); char *pop(); int depth(); };
Back to Article