IMO one is enough, why does calloc require to split it into two arguments?
|
feedback
|
|
The parameter names document it reasonably well:
The latter form allows for neat allocating of arrays, by providing the number of elements and element size. The same behavior can be achieved with However, In this question, it is suggested that | |||||||||||||||||
feedback
|
|
I'd guess that this is probably history and predates the times where C had prototypes for functions. At these times without a prototype the arguments basically had to be Nowadays, with | ||||
|
feedback
|
#define calloc(x) (calloc)(x, 1)ought to work. – Chris Lutz Sep 24 '11 at 1:48