How to erase (delete) the character before last from a string in C++

1 Answer

0 votes
#include <iostream>
#include <string>

using std::cout;
using std::endl;
using std::string;

int main()
{
	string s("c++ programming");

	s.erase(s.end() - 2);

	cout << s << endl;

	return 0;
}

/*
run:

c++ programmig

*/

 



answered May 9, 2018 by avibootz

Related questions

2 answers 167 views
1 answer 143 views
1 answer 115 views
2 answers 141 views
1 answer 140 views
2 answers 203 views
...