I have an array of things, and some of these things tend to be deleted. How can I shift the array after deleting a member, so there is no hole in the middle?
>>16
Why the fuck would you use realloc? He is deleting from an array, not resizing it. Just shift every element down one, although if you need deletion an array probably isn't what you should be using.