1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include <iostream> #include <vector> /* * * 9.41 * * */ int main () { std::vector<char> vc = {'a','b','c','d','e','f','g','h','i','j'}; std::string s1(vc.cbegin(), vc.cend()); std::cout << s1 << std::endl; return 0; }