Guest User

Untitled

a guest
Apr 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <sstream>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7. stringstream ss("foo");
  8. cout << ss.str() << endl;
  9. ss << "bar";
  10. cout << ss.str() << endl;
  11. ss << "baz";
  12. cout << ss.str() << endl;
  13. }
Add Comment
Please, Sign In to add comment