Difference between calloc() and malloc() - Interview Questions And Answers, Placement Papers, Tutori
1. calloc(...) allocates a block of memory for an array of elements of a certain size. By default the block is initialized to 0. The total number of memory allocated will be (number_of_elements * size). malloc(...) takes in only a single argument which is...