Search Results

9
votes
6answers
708 views

Is calloc(4, 6) the same as calloc(6, 4) ?

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? …