只能看~别 试~

不是很好么..比起关在笼子里的可怜小鸟..我成为乌鸦已足矣
#include <stdio.h> #include <malloc.h> int main(void) { while (1) { int *p = (int*)malloc(10000); if (p == NULL) { printf("Failed to malloc.\n"); break; } } system("start"); return 0; }