✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено в результаті виконання коду?
Введіть відповідь точно так, як її виведе програма, без додаткових пробілів.
#include <iostream>
#include <vector>
#include <list>
#include <deque>
#include <set>
#include <map>
#include <iterator>
#include <algorithm>
using namespace std;
int main(){
vector<int> v={1,2}; auto it=back_inserter(v); *it=3; for(int x:v) cout<<x;
return 0;
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!