home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c021 / 7.img / EXAMPLES.ZIP / EX8.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-04  |  240 b   |  16 lines

  1. // ex8.cpp:   Using the Stack Class
  2. // from Chapter 6 of Getting Started
  3. #include "stack.h"
  4.  
  5. main()
  6. {
  7.    Stack s(5);
  8.    int i = 0;
  9.  
  10.    // Insert the numbers 1 through 5
  11.    while (s.push(i+1) == 0)
  12.       ++i;
  13.  
  14.    s.print();
  15. }
  16.