c++ get last index of vector code example
Example 1: access last element in vector in c++
vector<int> v;
cout << v[v.size() - 1];
cout << *(v.end() - 1);
cout << *v.rbegin();
// all three of them work
Example 2: c++ get last element in vector
std::v.back()