This program illustrates the use of the STL remove_copy() algorithm to copy all values except a particular value from one vector of integers to another. Press Enter to continue ... Here are the sixteen values in v1: 1 2 2 3 4 5 2 3 6 7 2 8 3 9 10 2 Press Enter to continue ... Here are the sixteen values in v2: 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 Press Enter to continue ... Now we copy all values except 2 from v1 to v2, starting at the 3rd value of v2. Press Enter to continue ... Here are the revised values in v2: 101 102 1 3 4 5 3 6 7 8 3 9 10 114 115 116 Press Enter to continue ... The iterator returned by the algorithm is pointing at the value 114. Press Enter to continue ...