...
Wiki Markup |
---|
The {{calloc()}} function ensures that the newly allocated memory has also been cleared. Because {{sizeof(char)}} is guaranteed to be 1, this solution does not need to check for a numeric overflow as a result of using {{calloc()}} \[[MEM37MEM07-CA. Ensure that size arguments to calloc() do not result in an integer overflow]\]. |
...
Wiki Markup |
---|
The {{calloc()}} function ensures that the newly allocated memory has also been cleared. Because {{sizeof(char)}} is guaranteed to be 1, this solution does not need to check for a numeric overflow as a result of using {{calloc()}} \[[MEM37MEM07-CA. Ensure that size arguments to calloc() do not result in an integer overflow]\]. |
...