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 |
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
Can i use Two or More Main Funtion in any C program.?
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
How would you write qsort?
I heard that you have to include stdio.h before calling printf. Why?
What is the difference between scanf and fscanf?
What are dangling pointers? How are dangling pointers different from memory leaks?
write a program to add two numbers of any size.....(remember any size)
What is the output of printf("%d", printf("Hello"));?
ASCII stands for
write a program structure to find average of given number
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147