Advertisement
Garey

Daniela FullName

Feb 28th, 2018
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <sstream>
  3. #include <string>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8.    
  9.     string str = "Daniela Ivanova";
  10.     istringstream ss(str);
  11.     string new_str;
  12.  
  13.     while(getline(ss, new_str, ' ')) {
  14.         cout << new_str << endl;
  15.     }
  16.  
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement