std string reverse_iterator code example
Example 1: string reverse iterator c++
// string::rbegin/rend
#include <iostream>
#include <string>
int main ()
{
std::string str ("now step live...");
for (std::string::reverse_iterator rit=str.rbegin(); rit!=str.rend(); ++rit)
std::cout << *rit;
return 0;
}
Example 2: string reverse iterator c++
...evil pets won