Тест №2 (массивы и контейнеры). Пример. Что будет выведено в стандартный поток в результате выполнения программы? 1)--------------------------------------------------------- void Function4(int* first, int count) { for(int i=0; i v(10); v.reserve(50); for(int i=0; i<10; i++) { v.push_back(i); } cout<<"Size:"< deq; for(int t=1; t<=6; t++) { deq.push_front(t); } while(!deq.empty()) { cout << deq.back() << ','; deq.pop_back(); cout << deq.front() << ','; deq.pop_front(); } } -----------------------------------------------------------