#include #include using namespace std; int main (){ string str = "Hello World!"; for( string::iterator it=str.begin(); it!=str.end(); ++it) cout << *it; cout << endl; }