Otra duda por que cuando declaro un puntero de tipo string y hago lo siguente:
Código C++:
Ver originalstring nom="hola";
string *n=&nom;
cout<<n; //0x0012ff64
cout<<*n; //aqui me marca error si se supone que me debe regresar lo que hay en la direccion ("hola")
El error es:
C:\Documents and Settings\Administrador\pruebas.cpp(34) : error C2679: binary '<<' : no operator defined which takes a right-hand operand of type 'class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >' (or there is
Por favor ayudenme