例如考虑以下代码
int main(int argc,char *argv[]) { int *p,*q; p = (int *)malloc(sizeof(int)*10); q = (int *)malloc(sizeof(int)*10); if (p == 0) { printf("ERROR: Out of memory\n"); return 1; } if (q == 0) { printf("ERROR: Out of memory\n"); exit(0); } return 0; }
什么是返回0,返回1,退出(0)在上面的程序..
exit(0)将退出总程序,并且控制从循环出来,但是如果返回0,返回-1则会发生什么.