I have an array of pointers to struct, and after processing the array, the pointer is at the end of the memory block. I want to free memory block, so I need to go to the first memory byte and loop through the array of pointers again to free each of the elements in the array. How would you point back to the first byte of the memory block?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
There isn't an automatic way - you have to pass the original location to free. Common techniques are to make a copy of the original pointer or if you know the number of entries and their size you can just subtract this from the pointer |
|||
|
|
|
You have to either remember the original address or know where you are (what index) so you can back up enough to find the start. An example of the first (ignoring for now that, in all these cases, you're printing uninitialised values, it is a contrived example after all):
For the second:
Alternatively, you could just keep your pointer as is and use array indexing to process the array, something like:
Most modern compilers will give you the same code under the covers anyway. |
||||
|
|
