With every use of a memory allocation function, what function should be used to release allocated memory which is no longer needed?
Answers
Answered by
0
With every use of memory allocation function, what function should be used to release allocated memorywhich is no longer needed? The libraryfunction free() is used to deallocate the memory that is no longer be used. This deallocated memory isdynamically allocated by malloc, calloc and realloc previously.
Similar questions