![]() |
#2
CplusGo2017-05-09 09:27
|
what is the output of this code?
Note:<list> is already included.
list<int>x({1,2,3});
x.pop_front();
cout<<x.front();
x.pop_back();
cout<<x.back()<<x.size();