home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH17 / A17265.TXT < prev    next >
Encoding:
Text File  |  1993-12-01  |  416 b   |  8 lines

  1. Here are the declarations of the two stack objects, "stringStack"
  2. and "intStack", that are used by this program.  Because these
  3. stacks are declared at file scope, they are constructed before the
  4. execution of the main() function begins.  The object "stringStack"
  5. uses the array implmentation of a stack, and the object "intStack"
  6. uses the linked-list implementation.  Both Stack objects have
  7. internal linkage.
  8.