A condition where in memory is reserved dynamically but not accessible to any of the programs is called _____________

A condition where in memory is reserved dynamically but not accessible to any of the programs is called _____________ Correct Answer Memory leak

If we allocate memory dynamically in a function (malloc, calloc, realloc), the allocated memory will not be de-allocated automatically when the control comes out of the function. This allocated memory cannot be accessed and hence cannot be used. This unused inaccessible memory results in a memory leak.

Related Questions