/// see also http://stackoverflow.com/q/28110509/2932052
#include <iostream>
#include <vector>

using namespace std;

int main() {
	vector<const char*> vc = {"hello","world"};
	cout << vc[0] << " " << vc[1] << endl;
	
	vector<string> vs(vc.begin(), vc.end());
	cout << vs[0] << " " << vs[1] << endl;
	
	return 0;
}