Advertisement
193030

String resize

Feb 22nd, 2020
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. string ns;
  5.  
  6. using namespace std;
  7. int main()
  8. {
  9.  
  10.    string s = "text here";
  11.    s.resize(4);
  12.    cout << s << endl;
  13.  
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement