This program illustrates the use of the distance() function to compute the number of positions between two iterators. Press Enter to continue ... Here are the values in a list of integers: 2 4 6 8 10 12 14 16 18 20 Press Enter to continue ... p1 is pointing at the value 8 (the 4th value). p2 is pointing at the value 18 (the 9th value). Press Enter to continue ... The number of values (or positions) "between" these two values (inclusive) is 6 (= 9-4+1). Press Enter to continue ...