I'm a beginner C programmer, and I assumed that this would be the case, but would like some affirmation if possible.
If they are the same, why not just take one argument instead?
|
2
|
I'm a beginner C programmer, and I assumed that this would be the case, but would like some affirmation if possible. If they are the same, why not just take one argument instead? |
|||
|
|
|
|
It is the same. The reason is because most of the time you want to use a sizeof operator as one of the arguments. If passing two parameters bother you, call malloc() which has a single argument. |
||||||||||
|
|
|
People mostly use allocation routines to allocate space for a set number of items, so
This code actually looks slightly "nicer" than the equivalent
although, to seasoned C coders, there's no real distinction (other than the zero initialization of course). I have to say I have never used calloc in the wild, since I'm almost always creating a |
||||||||
|
|
|
There is a slight distinction: Calloc can decide to zero-out the memory only as it is needed and then there's the advantage of knowing the size of the elements. I can't name any implementations doing this, but it was thought for this. As an example: One callocates 4GB of memory, but the system has only 2GB: it wouldn't make sense to write 2GBs of zero into the virtual memory, therefore the system could set a dirty-flag on this memory to zero it out as it gets loaded into memory. |
|||
|
|
|
|
calloc(4, 6) and calloc(6, 4) are NOT the same: On a typical 32bit/64bit system the first would allocate 32 bytes and the second 24 bytes.
The key point is that calloc must return the memory as if it was correctly aligned as an array. It is meant to allocate an array and be used as follows:
or
calloc is supposed to allocate the array taking into account padding and other operating requirements of the target system. So on most 32bit machines, where a 6 byte structure would need to be padded to 8 bytes, it would allocate 4 lots of 8 bytes. calloc where the first argument is a sizeof() is most likely a bug and should be investigated. calloc where the second argument is not sizeof(atype) is undefined. It reeks of hidden assumptions and is dangerous to port. Clarification: On a typical 32bit/64bit system, a structure is likely to be padded and aligned to a multiple of 32bits. As such on these systems sizeof would not return 6 bytes. In fact there is no guarantee that the compiler would not pad and align to some multiple of 16 bytes if that is what the compiler/platform requires. My answer is based on the fact you should not make assumptions about structure size. They can change with compiler options, or target platform. Just make sure that your second argument is a sizeof expression and don't make assumptions. From the
|
||||||||||
|
|
|
Despite the accepted answer (which I believe to be correct), there seems to be confusions about how many bytes are allocated due to alignment. So here's a little test on my 32-bit Linux with gcc-4.3:
The result is:
which shows that both
which shows that 16 bytes are reserved when 12 are requested and allocated to the program. In either case, both Added by Jonathan Leffler because 300 characters is never going to be enough. Consider this program, which leaks memory like a veritable sieve, but demonstrates a point:
On Windows, under Cygwin, this starts by allocating blocks that are 16 bytes apart (actually, the second block is 24 bytes after the first, but thereafter, they are 16 bytes apart). When allocating (2,7), the block addresses start incrementing by 24 bytes; likewise, (3,4) allocates blocks 16 bytes apart, but (3,5) allocates blocks 24 bytes apart. And, for the record, both (4,6) and (6,4) return pointers 32 bytes apart. This simply demonstrates that there is some overhead associated with an allocation call. If you look at the archetypal implementation of malloc() et al in K&R, you will see that the size of the block is stored ahead of the memory that you're entitled to use. Different implementations do these things differently; those worried about memory trampling will avoid storing control data near where the user can wreak havoc. When you calloc(4,6), you only have reliable access to 24 bytes of data. Even if your implementation gives you return values that are 32 bytes apart, you may not safely use any more than the 24 bytes you requested. And debugging versions of malloc() will observe if you write out of the bounds you requested. |
||||
|
|
|
To the excellent responses posted, I want to add one more point of difference between using Just this feature alone would be enough for me to prefer |
||
|
|