char Vector к строке C

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

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