How does free() know explain how much memory to release?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Write a pro-gramme to determine whether the number is even or odd?

1 Answers  


Explain built-in function?

0 Answers  


How can you tell whether a program was compiled using c versus c++?

0 Answers  


5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

2 Answers   Accenture,


In a header file whether functions are declared or defined?

0 Answers   TISL,






Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


What is #define?

0 Answers  


What the advantages of using Unions?

0 Answers   TISL,


marge linklist

0 Answers   HCL,


can we declare a function in side the structure?

2 Answers   HCL,


What is wrong in this statement?

0 Answers  


write a program to interchange the value between two variable without using loop

1 Answers  


Categories