I'm quite new to C++, and couldn't find the answer to this thing:
I have an array of pointers, each cell is a another pointer to an object of type Tenant. I would like to get a "Tenant" and add it to my array.
void addTenant(const Tenant& tnt)
{
tenantArray[size] = tnt;
}
What am I doing wrong?
tenantArray[size]is right until we see more code either. – chris Dec 15 '12 at 19:45