home *** CD-ROM | disk | FTP | other *** search
- Here are the declarations of the two stack objects, "stringStack"
- and "intStack", that are used by this program. Because these
- stacks are declared at file scope, they are constructed before the
- execution of the main() function begins. The object "stringStack"
- uses the array implmentation of a stack, and the object "intStack"
- uses the linked-list implementation. Both Stack objects have
- internal linkage.
-