what is mean by Garbage collection ?
Please answer me.
Advance thanks.
Answer Posted / 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 |
Post New Answer View All Answers
Explain the use of fflush() function?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
In C, What is the #line used for?
What is difference between structure and union with example?
Disadvantages of C language.
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
What are the advantages of Macro over function?
Can we increase size of array in c?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is a structure and why it is used?
Simplify the program segment if X = B then C ← true else C ← false
What is calloc in c?
What is %d used for?
What are the advantages of c preprocessor?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...