Explain 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

Synonymous with pointer array a) character array b) ragged array c) multiple array d) none

0 Answers  


What is the difference between struct and typedef struct in c?

0 Answers  


What is difference between && and & in c?

0 Answers  


When should you not use a type cast?

0 Answers  


two variables are added answer is stored on not for third variable how it is possible?

3 Answers  






Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]

2 Answers  


enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program

1 Answers  


Which is more efficient, a switch statement or an if else chain?

0 Answers  


What are # preprocessor operator in c?

0 Answers  


Write a program to find the biggest number of three numbers in c?

0 Answers  


Diff between for loop and while loop?

2 Answers   TCS,


Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321

7 Answers   HCL,


Categories