Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 208 Bytes

README.md

File metadata and controls

5 lines (3 loc) · 208 Bytes

Exercise 8-6

The standard library function calloc(n, size) returns a pointer to n objects of size size, with the storage initialized to zero.

Write calloc, by calling malloc or by modifying it.