This program illustrates the use of a "back_inserter", which can be used if the recipient container supports the push_back() member function. Press Enter to continue ... First we display five integers from a vector: 1 2 3 4 5 Press Enter to continue ... Then we copy the five integers from that vector into an empty deque, using a "back_inserter", and then display the deque to confirm: 1 2 3 4 5 Press Enter to continue ... Finally, we copy the same five integers from the vector into an empty list, again using a "back_inserter", and again displaying the list to confirm: 1 2 3 4 5 Press Enter to continue ...