Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. std::vector<std::string> hello = {"Hello ", "dude", "!"};
  2.  
  3. for (auto &word: hello)
  4. {
  5. std::cout << word;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement