what if you wanted to iterate through a vector but god said for (std::vector<int>::const_iterator iter = my_vector.begin(); iter != my_vector.end(); iter++) std::cout << *iter << std::endl;
this is no longer fashionable because modern c++ syntax allows for (auto&& el: my_vector) std::cout << el << std::endl; so luckily you can avoid all that
re: c++
this is no longer fashionable because modern c++ syntax allows
for (auto&& el: my_vector) std::cout << el << std::endl;
so luckily you can avoid all that