1.

Explain the difference between malloc() and calloc() in C?

Answer»
S.nomalloc()calloc()
1.Does not INITIALIZE allocated MEMORYFills allocated memory with zero bits.
2.Returns ONE single objectReturns ARRAY of OBJECTS


Discussion

No Comment Found