收起
用malloc
#include<stdio.h> #include <malloc.h> #include <memory.h> int main(){ int* value = (int *)malloc(100000*sizeof(int));; printf("over\n"); return 0; }
报告相同问题?