132
C++ String rend()
The rend() function stands for reverse end. This function points to the first character of the string.
Syntax
Consider a string ‘str’ and reverse iterator ‘ritr’. Syntax would be:
Parameter
This function does not contain any parameter.
Return value
It returns a reverse iterator pointing to the beginning of the string.
Example
Let’s see the simple example.
Output:
dlroW olleH
In this example, we get the reverse string using rend() function.
Next TopicC++ Strings