Advertisement
chevengur

Вводный курс: основы C++ | Урок 3: Ссылки 2/3

Sep 1st, 2023
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <vector>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. void MoveStrings(vector<string>&source, vector<string>&destination) {
  7.     for(string a : source)
  8.         destination.push_back(a);
  9.     source.clear();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement