cast vector to string c++ code example
Example: vector to string c++
std::vector<char> input({ 'a', 'b', 'c' });
std::string s(input.begin(), input.end());
std::vector<char> input({ 'a', 'b', 'c' });
std::string s(input.begin(), input.end());