vector to string c++ code example
Example 1: vector to string c++
std::vector<char> input({ 'a', 'b', 'c' });
std::string s(input.begin(), input.end());
Example 2: string to vector c++
#include <iostream>
#include <string>
#include <vector>
int main()
{
std::string s = "Hello World!";
std::vector<char> v(s.begin(), s.end());
for (const char &c: v)
std::cout << c;
return 0;
}