Hello,
I'm relatively new to c++, so I would appreciate any help.
This must be a very basic issue, but how is it that one can assign a stuct or class member to a pointer instead of that structs or class member's address (via &)?
(from stroustrup)
struct name{
char* string;
name* next;
double value;
};
in other function:
name* nn = new name;