Advertisement
camilosasuketbs

Untitled

Oct 27th, 2021
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. std::ostream& operator<<(std::ostream& out, const String& str)
  2. {
  3. out << str.c_str();
  4. return out;
  5. }
  6.  
  7.  
  8. const char * String::c_str() const
  9. {
  10.  
  11. return str;
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement