String C++ Tutorial

#include 
using std::cout;
using std::endl;
#include 
using std::string;
int main()
{
   string string1( "This is a test string!");
   int location;
   
   cout << "Original string:\n" << string1 
        << "\n\n(find) \"is\" was found at: " << string1.rfind( "is" ); 
        
   return 0;
}
Original string:
This is a test string!
(find) "is" was found at: 5"