fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4.  
  5. int main(){
  6. string s = "hello world 123";
  7. stringstream ss(s);
  8.  
  9. while (ss >> s) {
  10. cout << s << "\n";
  11. }
  12. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
hello
world
123