What is the difference between doing:
ptr = (char **) malloc (MAXELEMS * sizeof(char *));
// OR
ptr = (char **) calloc (MAXELEMS, sizeof(char*));
???
EDT: When is it a good idea to use calloc over malloc or vice versa?
|
|
|
|
|
|
|
calloc() zero-initializes the buffer, while malloc() leaves the memory uninitialized. EDIT: Zeroing out the memory may take a little time, so you probably want to use malloc() if that performance is an issue. If initializing the memory is more important, use calloc(). For example, calloc() might save you a call to memset(). |
||||||||||||||||||
|
|
|
There's no difference in the size of the memory block allocated. From the pedantic point of view though, Later, in one of the Technical Corrigenda to C99 standard, the behavior was defined for all integer types (which makes sense). I.e. formally, in the current C language you can initialize only integer types with In practice, |
|||
|
|
|
|
A less known difference is that in operating systems with optimistic memory allocation, like Linux, the pointer returned by
See for instance this SO question for further discussion about the behavior of malloc |
||
|
|