how to convert string to vector c++ code example
Example: 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;
}