Answer Posted / sujith
Memory leak is nothing but u create huge chunk of memory
with a malloc or any such mechanism and u never free that
manually which make the available free main memory in the
system to minimum. this may even lead to system crashing.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is the c value paradox and how is it explained?
Explain is it better to bitshift a value than to multiply by 2?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Why do we use static in c?
What are different storage class specifiers in c?
what is uses of .net
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
can any one tel me wt is the question pattern for NIC exam
What are the benefits of c language?
When should volatile modifier be used?
Why is c so important?
Compare and contrast compilers from interpreters.
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
How are variables declared in c?