Guest User

Untitled

a guest
Dec 14th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include<vector>
  2. #include<string>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8. string s1 = "abcdef";
  9. vector<char> v1(s1.c_str(), s1.c_str() + s1.size() +1);
  10. return 0;
  11. }
Add Comment
Please, Sign In to add comment