Although both calloc and malloc allocates a chunk of memory from heap, Calloc() allocates memory with elements initialized to 0 whereas malloc() allocates memory which is never initialized to zero. Thus memory values returned by malloc contains junk, random or previously used values. Also calloc() may be used to create arrays dynamically whereas malloc() generally creates Structures.

About our authors: Team EQA

You have viewed 1 page out of 252. Your C learning is 0.00% complete. Login to check your learning progress.

#