Data Type C++

#include 
#include 
#include 
using namespace std;
int main()
{
  string str1("www.rntsoft.com");
  string::iterator p;
  unsigned int i;
  // use size()
  for(i = 0; i     cout << str1[i];
  cout << endl;
  // use iterator
  p = str1.begin();
  while(p != str1.end()) 
    cout << *p++;
  cout << endl;
  // use the count() algorithm
  i = count(str1.begin(), str1.end(), 'i');
  cout << "There are " << i << " i's in str1\n";
  p = str1.begin();
  while(p != str1.end()) 
    cout << *p++;
  cout << endl;
  return 0;
}