malloc2018-06-14 本文已影响8人 harukou_ou 动态内存分配mooc #include <stdlib.h> int *a = (int*)malloc(n*sizeof(int)); // malloc()返回void* // a为指针,也可以当成数组直接用