calloc vs. malloc, stack vs. heap, register
calloc:
void* calloc (size_t num, size_t size);
Allocate and zero-initialize array
Allocates a block of memory for an array of num elements, each of them size bytes long, and initializes all its bi
转载
2014-09-14 13:52:50 ·
964 阅读 ·
0 评论