What is Memory leakage ?

Answers were Sorted based on User's Feedback



What is Memory leakage ?..

Answer / deepak mundhada

when the memory gets allocated using dynamic memory function
like malloc(),realloc()and if we don't free memory using
free() function then this area can't be used by any user.so
this is called Memory leakage.

Is This Answer Correct ?    12 Yes 0 No

What is Memory leakage ?..

Answer / sathees kumar

when the memory gets allocated using dynamic memory function
like malloc(),realloc()and if we don't free memory using
free() function then this area can't be used by any user.so
this is called Memory leakage

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

3.write a simple program that will output your name,phone number,e-mail address,and academic major on separate lines 1.create an account and a personal directory for your work b.find out how to create a subdirectory on your system.create one called info c.you will use a text editor to type in your programs and data files.some C systems have a built in text editor;others do not.Find out what text editor you will be using and how to access it.create a text file(not a program) containing your name ,address,and telephone number on separate lines.Next,write the brand of computer you are using and the name of the text editor.Then write a paragraph that describes your past experience with computers.save this file in your info directory. d. find out how to print a file on your system .print out and turn in the file you created in (c).

0 Answers   TCS,


how to find sum of digits in C?

21 Answers   CTS, Infosys,


You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?

1 Answers  


What does %d do in c?

0 Answers  


main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?

1 Answers   GATE,






I need a sort of an approximate strcmp routine?

0 Answers  


how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....

0 Answers  


What is the general form of a C program?

0 Answers  


can we change the default calling convention in c if yes than how.........?

0 Answers   Aptech,


Write a Program to accept different goods with the number, price and date of purchase and display them

0 Answers   HDFC,


What will be the output of x++ + ++x?

20 Answers   MBT, Religare,


the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function

0 Answers  


Categories