只能看~别 试~

不是很好么..比起关在笼子里的可怜小鸟..我成为乌鸦已足矣
2011-08-24 20:05
程序代码:#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;
}
2011-08-24 20:42
2011-08-24 21:27