Advertisement
DmitryPythonDevelop

Untitled

Apr 3rd, 2020
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. #include <string>
  4. #include <cstring>
  5.  
  6. void print_size (const std::string &str);
  7.  
  8. int main(int argc, char const *argv[])
  9. {
  10.  
  11.     print_size("В этом предложении 35 символов!");
  12.     return 0;
  13. }
  14.  
  15. void print_size (const std::string &str) {
  16.     std::cout << str.size() << std::endl;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement