[Solved] In C under what circumstances would the function realloc return Null? [closed]
When the realloc function can’t get more memory to expand the block to the size you asked for. This is either because there is literally no memory available, or the virtual space is exhausted (e.g. a 32-bit application on a 64-bit machine with 16GB of RAM still can’t use more than 4GB in the process … Read more