home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / TCPP30-3.ZIP / EXAMPLES.ZIP / EX8.CPP < prev    next >
C/C++ Source or Header  |  1992-02-18  |  302b  |  19 lines

  1. // Borland C++ - (C) Copyright 1991 by Borland International
  2.  
  3. // ex8.cpp:   Using the Stack Class
  4. // from Hands-on C++
  5. #include "stack.h"
  6.  
  7. main()
  8. {
  9.    Stack s(5);
  10.    int i = 0;
  11.  
  12.    // Insert the numbers 1 through 5
  13.    while (s.push(i+1) == 0)
  14.       ++i;
  15.  
  16.    s.print();
  17.    return 0;
  18. }
  19.