Answers for "last elemnt in vector string in c++"

C++
22

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
Posted by: Guest on May-31-2020
0

last character of std::string

// string::back
#include <iostream>
#include <string>

int main ()
{
  std::string str ("hello world.");
  str.back() = '!';
  std::cout << str << '\n';
  return 0;
}
Posted by: Guest on June-10-2021

Browse Popular Code Answers by Language