有2个头文件都可以
C头文件,
调用时 malloc(x);
C++头文件,
调用时要写 std::malloc(x) 注意std前缀
它跟C语言是一样的! 也是动态的申请空间,例如: int *p;
根据网上的搜索结果,C++中,malloc函数的头文件是stdlib.h或者cstdlib。malloc函数的原型是:
extern void *malloc (unsigned int num_bytes);
malloc函数的功能是在内存上分配一段长度为num_bytes个字节大小的空间,并返回一个void类型的指针。
string 或malloc.h