#include <cstdlib> void *malloc( size_t s );
函数 malloc() 分配大小为 s 的内存块。内存保持未初始化。
如果操作失败,malloc() 返回 NULL。