difference between malloc and calloc

Answers were Sorted based on User's Feedback



difference between malloc and calloc..

Answer / namita

1-memory allocated by malloc contains garbage value.But
memory allocated by calloc is initialised to zero.

2-malloc takes only one argument which indicates the size
to be allocated.But calloc takes two arguments.First
argument indicates the number of blocks to be allocated
where as the second argument indicates the size of the
block.

Is This Answer Correct ?    35 Yes 2 No

difference between malloc and calloc..

Answer / vara

There are two differences.
1) is the number of arguments. Malloc() takes a single
argument (memory required in bytes), while calloc() needs
two arguments (number of variables to allocate memory, size
in bytes of a single variable).
2)malloc() does not initialize the memory allocated, while
calloc() initializes the allocated memory to ZERO.

Is This Answer Correct ?    15 Yes 2 No

difference between malloc and calloc..

Answer / bijaya

1)malloc() function does not initialize the memory which it
allocates thats why it takes the garbage value.but calloc()
function initializes the allocated memory to zero thats why
it cant take any garbage value.

2)malloc() function takes single arg.that is the variabe
which is used to indicate the memory size to be
allocated.calloc() function takes two args-i) variable which
indicates the number of memory blocks.ii)variable which
indicates the size of each blocks.

Is This Answer Correct ?    7 Yes 0 No

Post New Answer

More C Interview Questions

what is the difference between embedded c and turbo c ?

1 Answers  


Write a programe print the sum of series 0,1,2,.....10

7 Answers  


what is c?

7 Answers   Tech Mahindra,


What is boolean in c?

0 Answers  


Explain what is the purpose of "extern" keyword in a function declaration?

0 Answers  






a 'c' program to tell that the set of three coordinates lie on a same line

3 Answers   Persistent,


Write a code to remove duplicates in a string.

0 Answers   Expedia,


why do we use pointer instead directly acessing the data?

2 Answers  


write a program to display all prime numbers

0 Answers  


What do mean by network ?

0 Answers  


Write a program in c to input a 5 digit number and print it in words.

11 Answers  


What type of function is main ()?

0 Answers  


Categories