How can I duplicate an array of pointers in C? (uint32_t) – CentOS
I have the following variable "places" which is a ptr to a dynamic array of string locations: uint32_t* places; I would like for my function to return a DUPLICATE pointer of type (uint32_t*) My current attempt: uint32_t arrCpy = malloc((numberOfElements)…