Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <sstream>
- #include <string>
- using namespace std;
- int main() {
- string str = "Daniela Ivanova";
- istringstream ss(str);
- string new_str;
- while(getline(ss, new_str, ' ')) {
- cout << new_str << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement