8 ms·
"We now do this consistently: a = malloc(n * sizeof(a));" Isn't calloc(3) the safer paradigm (protecting against integer overflows, in case n sizeof > SIZE_MA
by bpineau 11y ago
"We now do this consistently: a = malloc(n * sizeof(a));"
Isn't calloc(3) the safer paradigm (protecting against integer overflows, in case n sizeof > SIZE_MAX) recommanded for this case ? (besides the memory zeroing).