Answers for "cpp string to vector"

C++
1

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;
}
Posted by: Guest on June-02-2020

Browse Popular Code Answers by Language