C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
C++ String pop_back()This function is used to remove a last character of a string, decreasing its length by one. Syntax
Consider a string str. Syntax would be : str.pop_back(); Parameters
This function does not contain any parameter. Return valueThis function does not return any value. Example 1
Let's see the simple example.
#include<iostream>
using namespace std;
int main()
{
string str ="javac";
str.pop_back();
cout<<str;
return 0;
}
Output: java
Next TopicC++ Strings
|