//myListswap1.cpp #include #include #include using namespace std; //myMapIteration1.cpp int main() { map m1; map m2; map::iterator it; // m1["A"] ="Apple"; m1["B"] ="Banana"; m1["C"] ="Coffe"; for(it= m1.begin(); it !=m1.end(); it++) { cout<<"\n" << (*it).first << " ::: " << (*it).second; } return 0; }