How to erase (delete) the first character 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.begin());

	cout << s << endl;

	return 0;
}

/*
run:

++ programming

*/

 



answered May 8, 2018 by avibootz

Related questions

1 answer 163 views
1 answer 197 views
2 answers 226 views
2 answers 187 views
1 answer 187 views
2 answers 267 views
...