|
|
|
|
|
by bcpermafrost
3484 days ago
|
|
It is not as you say. The article suggests that Malloc + Memset is slower than Calloc. Malloc will be faster depending on your use case. If your plan is to eventually call memset. Then just use Calloc, otherwise malloc will be faster all the time. |
|