String C++ Tutorial

#include 
#include 
using namespace std;
int main()
{
   string first( "one" ), second( "two" );
   cout << "Before swap:\n first: " << first << "\nsecond: " << second;
   first.swap( second );
   cout << "\n\nAfter swap:\n first: " << first << "\nsecond: " << second << endl;
    
   return 0;
}