String C++ Tutorial

#include 
#include 
#include 
#include 
#include 
using namespace std;
int main()
{
  string strA("This is a test.");
  // Create a string from a vector.
  vector vec;
  for(int i=0; i < 10; ++i)
    vec.push_back('A'+i);
  string strC(vec.begin(), vec.end());
  cout << "Here is strC, which is constructed from a vector:\n";
  cout << strC << endl;
  return 0;
}