VD
Size: a a a
VD
VD
AP
AP
AP
AP
W
auto func()
{
//in general initialize arr somehow
vector<int>arr(15, 0);
return arr.begin();
}
for(auto it = func(); it != /*somewhat*/; it++)
cout << *it << ' ';
VD
auto func()
{
//in general initialize arr somehow
vector<int>arr(15, 0);
return arr.begin();
}
for(auto it = func(); it != /*somewhat*/; it++)
cout << *it << ' ';
VD
auto func()
{
//in general initialize arr somehow
vector<int>arr(15, 0);
return arr.begin();
}
for(auto it = func(); it != /*somewhat*/; it++)
cout << *it << ' ';
VD
VD
W
VD
auto func()
{
//in general initialize arr somehow
vector<int>arr(15, 0);
return arr.begin();
}
for(auto it = func(); it != /*somewhat*/; it++)
cout << *it << ' ';
for(auto& elem : func()) {
}
VD
for(auto& elem : func()) {
}
RN
ДЦ
RN
RN
ДЦ
RN