이런한 선언에서..
string s1[4] = {"fine", "fish", "fashion", "fate"};
string s2[2] = {"busy", "bats"};
string s3[2] = {"silly", "singers"};
vector<string> words(4);
copy(s1, s1 + 4, words.begin());
ostream_iterator<string, char> out(cout, " ");
copy (words.begin(), words.end(), out);
cout << endl;
세가지 질문입니다.