#include <cstdlib> void *malloc( size_t s );
函式 malloc() 分配大小為 s 的記憶體塊。記憶體保持未初始化。
如果操作失敗,malloc() 返回 NULL。