c程序设计语言_习题8-6_利用malloc()函数,重新实现c语言的库函数calloc()
The standard library function calloc(n,size)returns a pointer to n objects of size size,with the storage initialized to zero.Writecalloc,by calling malloc or by modifying it./*Exercise 8.6.The standard library function ...