#include <malloc.h>int *ywshuzumalloc(int n) // 一维数组分配 { int *a; a=(int *)malloc(sizeof(int)*n); return a; } 相关文章: