//myListInsert4.cpp #include #include #include using namespace std; //object.insert(iterator, how_many,data); int main() { string str1[] = {"A", "B", "C","D"}; string str2[] = {"Apple", "Banana", "Cherry","Drupe"}; // list Lstr1(str1, str1+4); list Lstr2(str2, str2+4); // cout<<"\n Lstr1.size() : " << Lstr1.size() <:: iterator it; for(it= Lstr1.begin(); it !=Lstr1.end(); it++) { cout <<" "<< *it; } it = Lstr1.begin(); it++; //insert one below top element cout<<"\n fuse two lists in sequence "<