String C++

#include 
#include 
#include 
using namespace std;
int main( )
{
   string adage( "this is a test" );
   cout << adage;
   cout << adage.length() << " letters";
   // equivalent of strrev()
   reverse( adage.begin(), adage.end() );
   cout << "\n\nReversed string: " << adage;
   cout << "\nThe reversed string has " << adage.length() << " letters";
}