string reverse c++ stl code example
Example 1: string reverse stl
int main() {
string str = "foobarbaz";
reverse(str.begin(), str.end());
cout << str; // prints "zabraboof"
return 0;
}
Example 2: Reverse string C++
reverse(str.begin(),str.end());