can anybody please tell me the exact difference between calloc malloc and realloc thanx a lot
plzzzz
Code: calloc Allocates an array in memory with elements initialized to 0. void *calloc( size_t num, size_t size ); malloc Allocates memory blocks. void *malloc( size_t size ); realloc Reallocate memory blocks. void *realloc( void *memblock, size_t size );
calloc Allocates an array in memory with elements initialized to 0. void *calloc( size_t num, size_t size ); malloc Allocates memory blocks. void *malloc( size_t size ); realloc Reallocate memory blocks. void *realloc( void *memblock, size_t size );
I am become death, the destroyer of worlds. mail:[email protected] Visual Basic 6.0 & .NETVisual C++ 6.0 & .NETASPLISPPROLOGCPascal
Forum Rules