Interview Questions

How can you determine the size of an allocated portion of memory?

C Interview Questions and Answers


(Continued from previous question...)

How can you determine the size of an allocated portion of memory?

You can’t, really. free() can , but there’s no way for your program to know the trick free() uses. Even if you disassemble the library and discover the trick, there’s no guarantee the trick won’t change with the next release of the compiler.

(Continued on next question...)

Other Interview Questions