Home » C++ String rend() function

C++ String rend() function

by Online Tutorials Library

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

You may also like