Dynamic memory allocation and freeing it in C

97 Views Asked by At

I am declaring variables( Pointer ) and dynamically allocating memory to them in one function (malloc) and then using those variables in other function as well and then using free() in other function itself to free them after their use is over.

My doubt is : Are memory sections pointed by those pointers actually getting freed? And How to know while debugging if memory sections are freed after we execute free()?

0

There are 0 best solutions below