This program illustrates the use of a "front_inserter", which can be used if the recipient container supports the push_front() 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 "front_inserter", and then display the deque to confirm: 5 4 3 2 1 Press Enter to continue ... Finally, we copy the same five integers from the vector into an empty list, again using a "front_inserter", and again displaying the list to confirm: 5 4 3 2 1 Press Enter to continue ...