Advertisement
Handde

4.2-2

May 15th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <cstdlib>
  4. using namespace std;
  5.  
  6. int main() {
  7. setlocale(LC_ALL, "Bulgarian");
  8. string s1 = "Nelly";
  9. string s2 = "Komsalova";
  10. s1 = s1 + s2;
  11. cout << "s1 e: " << s1 << endl;
  12.  
  13. cout << endl;
  14. system("pause");
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement