This program illustrates reverse iterators of the list class, as well as member functions rbegin() and rend(). Press Enter to continue ... Here are the contents of a list of size 12: 2 4 6 8 10 12 14 16 18 20 22 24 Press Enter to continue ... Now using a reverse iterator to display the list components in reverse order: 24 22 20 18 16 14 12 10 8 6 4 2 Press Enter to continue ... Now using a reverse iterator to display the list components in forward order: 2 4 6 8 10 12 14 16 18 20 22 24 Press Enter to continue ... Now constructing a new list containing the values from the first list in reverse order, and then displaying the values from this new list. 24 22 20 18 16 14 12 10 8 6 4 2 Press Enter to continue ...