Page 1 of 1

1. State two issues with the following piece of code. vector v; for (auto i=0;i<100;++i) v.push_back(i); for(auto i

Posted: Sat May 14, 2022 8:08 pm
by answerhappygod
1. State two issues with the following piece of code.
vector <int>v;
for (auto i=0;i<100;++i)
v.push_back(i);
for(auto i=v.size();i>=0;--i)
cout<<v;