Physics, asked by Anonymous, 10 months ago

What is the return type of malloc() or calloc() pointer of allocated memory type int * void ** void *?

no copy or spam is allowed

Answers

Answered by chaturthichvan
2

Answer:

initialization mollac allocates memory block of given size (in bytes) and return a pointer to the beginning of the block malloc doesen't initialize the allocated memory colloc allocates the memory and also initializes the allocates memory block to zero

Similar questions