vektor char ke string c

std::vector<char> input({ 'a', 'b', 'c' });

std::string s(input.begin(), input.end());
Wicked Willet