what is mean by Garbage collection ?
Please answer me.
Advance thanks.
Answers were Sorted based on User's Feedback
Answer / preeti singh
Garbage collection refers to a daemon process that reclaims
the memory that is no longer referenced by an application
that uses dynamic memory allocation.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / amutha
garpage collection one of the dynamic memory allocation so
that don't use long reference application
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / reshma pawar
garbage collection is a concept which suports automatic
deallocation of resources
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sunita yadav
when we use small amount of data in a large memory space
then since the data is less so memory will waste.to resolve
this probleb the concept of garbag collection is used,by
this concept we gathere all the free wastag memory so that
it can be used by other programs.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the diference between pointer to the function and function to the pointer?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
What are pragmas and what are they good for?
where are auto variables stored? What are the characteristics of an auto variable?
What language is windows 1.0 written?
I heard that you have to include stdio.h before calling printf. Why?
What are the different types of errors?
How many main () function we can have in a project?
Calculate 1*2*3*____*n using recursive function??
Explain the difference between strcpy() and memcpy() function?
What is the explanation for the dangling pointer in c?
What do you mean by recursion in c?