in Technology by

Distinguish between malloc() & calloc() memory allocation.

Please log in or register to answer this question.

1 Answer

0 votes
by

Both allocates memory from heap area/dynamic memory. By default calloc fills the allocated memory with 0’s.

Related questions

...