This program illustrates the swap() member function of the map interface. Press Enter to continue ... We begin by creating two maps. Press Enter to continue ... The first map has size 3 and contains the following pairs: A 65 B 66 C 67 Press Enter to continue ... The second map has size 7 and contains the following pairs: D 68 E 69 F 70 G 71 H 72 I 73 J 74 Press Enter to continue ... Now we swap the two maps using the swap() function from the map interface. Press Enter to continue ... After the swap the first map has size 7 and contains the following pairs: D 68 E 69 F 70 G 71 H 72 I 73 J 74 Press Enter to continue ... And the second map has size 3 and contains the following pairs: A 65 B 66 C 67 Press Enter to continue ...