[Solved] Does this function I made correctly append a string to another string?

First, char *stuff_to_append_to[] is an array of pointers of undetermined length, that is not a valid parameter, as the last dimension of an array must be specified when passed to a function, otherwise, pass a pointer to type. Next, char **stuff_to_append is a pointer to pointer to char and is completely valid, but given your … Read more