This program illustrates reverse iterators for maps, as well as the member functions rbegin() and rend(). Press Enter to continue ... First we use a reverse iterator to display the map contents in descending key order. Press Enter to continue ... E has an ASCII code of 69. D has an ASCII code of 68. C has an ASCII code of 67. B has an ASCII code of 66. A has an ASCII code of 65. Press Enter to continue ... Then we use a reverse iterator to display the map contents in ascending key order. Press Enter to continue ... A has an ASCII code of 65. B has an ASCII code of 66. C has an ASCII code of 67. D has an ASCII code of 68. E has an ASCII code of 69. Press Enter to continue ...