The exercise says that last name is an array of pointers to char (char *) and each position contains the memory address of last names.
When I declare the data received in the function, I should write char * last names? (which would contain the addresses) or * int last names? I suppose it should be with char Probably the question is silly, but I'm not sure whether to declare it that way or not.
I mean declare it like this
select void (int * statures, char * surnames);