动态内存管理
<
c
函数
定义于头文件
<stdlib.h>
malloc
分配内存
(函数)
calloc
分配并清零内存
(函数)
realloc
扩充之前分配的内存块
(函数)
free
归还之前分配的内存
(函数)
aligned_alloc
(C11)
分配对齐的内存
(函数)
参阅