#include #include using namespace std; int main() { vector v; v.push_back(1);//insert 1 at the back of v v.push_back(2);//insert 2 at the back of v v.push_back(4);//insert 4 at the badk of v for (vector:: iterator i = v.begin();i != v.end(); i++) { cout
@kv34615 жыл бұрын
Well explained Mam. Thank you mam.
@mayurkoli41455 жыл бұрын
You explain wrong at 6:19 pop_back() has not parameter. Simply it removes last element.