Hi again...The code is below and i hope it helps clarify my enquiry.I'm new to C++ and all help and suggestions are much appreciated. *******************code for contact list******************** #include #include using namespace std; class BasicAd{ protected: string name; string home_address; public: void BasicAd::setValues(string n, string h){ name = n; home_address = h; }; void BasicAd::getValues(){ cout<<"name : "<>choice; if(choice==1){ cout<<"\nEnter number of items for clubDir: "; cin>>size; for(int i=0; i>name; cout<<"home address: "; cin>>ha; cout<<"member name: "; cin>>mn; cout<<"date joined:"; cin>>dj; cout<<"\n"; club[i].setValues(name, ha, mn, dj); }; cout<<"\nThe Contact Details addded...."; } else if(choice==2){ cout<<"\nEnter number of items for clientDir: "; cin>>size; for(