pick out the odd one out of the following
a.malloc()
b.calloc()
c.free()
d.realloc()

Answers were Sorted based on User's Feedback



pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()..

Answer / mannucse

c.free()

Is This Answer Correct ?    58 Yes 3 No

pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()..

Answer / manishsoni

here malloc(),calloc(),realloc)() are the memory allocation
function after allocation of memory free is used to freed
the memory which is allocated by the above function.
so the free is odd term.

Is This Answer Correct ?    13 Yes 3 No

Post New Answer

More C Interview Questions

can anyone please tell about the nested interrupts?

0 Answers  


how the compiler treats any volatile variable?Explain with example.

1 Answers   Tata Elxsi,


what is C?

9 Answers   Syntel,


How do you declare a variable that will hold string values?

0 Answers  


What is cohesion in c?

0 Answers  






There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.

0 Answers  


In c language can we compile a program without main() function?

0 Answers  


What does d mean?

0 Answers  


What is return in c programming?

0 Answers  


What is the difference between ++a and a++?

0 Answers  


Was 2000 a leap year?

0 Answers  


#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks

9 Answers   Excel,


Categories