Which of the following is not correct about calloc(...)?
-It allocates a block of memory for an array of elements of a certain size.
-It allocates an array in memory with elements initialized to 0 and returns a pointer to the allocated space.
-It allocates memory blocks and returns a void pointer to the allocated space, or NULL if there is insufficient memory available.
-All of above are correct
-It allocates an array in memory with elements initialized to 0 and returns a pointer to the allocated space.
-It allocates memory blocks and returns a void pointer to the allocated space, or NULL if there is insufficient memory available.
-All of above are correct