void Guest::setaddress(string x)
{
// copy at most 15 characters from string to last name
const char *addressnamevalue = x.data();
int length = x.size();
strncpy(address,addressnamevalue,length);
address[length] = '\0'; // appends a null character to lasttname
}