Hi,
If a function takes a pointer as a parameter as in
void set_owner(Person* p)
how would I write this code? If it wasn't a pointer, I know I'd just write something like
void set_owner(string p)
{
owner = p;
}
Thanks in advance for your help.