This program illustrates reverse iterators for sets, as well as the member functions rbegin() and rend(). Press Enter to continue ... First we create an array of five characters, then a set of the same five characters from that array. Press Enter to continue ... Now we use a reverse iterator to display the set contents in descending key order. Press Enter to continue ... E D C B A Press Enter to continue ... Finally, we use a reverse iterator to display the set contents in ascending key order. Press Enter to continue ... A B C D E Press Enter to continue ...