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