Page 1 of 1

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

Posted: Sun May 15, 2022 10:23 am
by answerhappygod
6 5 Points State Two Issues With The Following Piece Of Code Vector Int V For Auto I 0 I 100 I V Push Back I 1
6 5 Points State Two Issues With The Following Piece Of Code Vector Int V For Auto I 0 I 100 I V Push Back I 1 (57.22 KiB) Viewed 29 times
Language is C++
6. (5 points) 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;