#include using namespace std; int main() { cout<<" A string pointer pStr1 gets \n"; cout<<" the address of a string Variable &Str1 \n"; string* pStr1; string Str1; pStr1 = &Str1; *pStr1 = "Hellow World" ; cout<<" the contents pStr1 passes it to Str1 \n"; cout<< " Str1 is :"<< Str1; return 0; }