This program illustrates typical uses of the default list class iterator (which is a random access iterator), and also shows the use of operators -> and == with list class iterators. Press Enter to continue ... Here are the values in our list: 1 2 4 8 16 32 64 Press Enter to continue ... p1 is set to point at the first component and p2 to one-past the last. Press Enter to continue ... p1 and p2 point to different list elements. Press Enter to continue ... Locations (accessed with the -> operator): (1, 2) (4, 5) Press Enter to continue ...