c++ access second last element 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: cpp get last element of vector
vector<int> vec;
vec.push_back(0);
vec.push_back(1);
int last_element = vec.back();
int also_last_element = vec[vec.size() - 1];
Example 3: c++ access second last element of vector
arr2.rbegin()[1] // rbegin() is reverse order starting at 0 for last element, 1 for second-last
Example 4: c++ get last element in vector
std::v.back()