string m = "dds"; string* temp = new string; How to use the copy constructor from string to assign the value to which temp refers to the value of m ?
ps Do I understand correctly that when dereferencing temp rvalue returns? which change does not affect the contents of the variable pointed to by temp ?
*) is always an lvalue. - AnT