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 / EX7.CPP < prev    next >
C/C++ Source or Header  |  1992-02-18  |  320b  |  20 lines

  1. // Borland C++ - (C) Copyright 1991 by Borland International
  2.  
  3. // ex7.cpp:   Using the List class
  4. // from Hands-on C++
  5. #include "list.h"
  6.  
  7. main()
  8. {
  9.    List l(5);
  10.    int i = 0;
  11.  
  12.    // Insert the numbers 1 through 5
  13.    while (l.put_elem(i+1,i) == 0)
  14.       ++i;
  15.    l.setn(i);
  16.  
  17.    l.print();
  18.    return 0;
  19. }
  20.