[src]
#include < iostream.h >
#include < string > //not string.h
using std::string;

void main()
{
string text="Hello";
cout < < text.c_str(); //Here how to print out it
}
[/src]