[求助]exit(5)是什么意思
int i;
printf("I am the child:%ld\n",getpid());
for(i=0;i<1000000;i++) sin(i);
i=5;
printf("I exit with %d\n",i);
exit(i);
exit(i)应该等同于exit(5)吧,这是什么意思啊不明白,有这种用法吗
我只知道exit(0),exit(1)
[此贴子已经被作者于2007-10-2 16:42:44编辑过]
int i;
printf("I am the child:%ld\n",getpid());
for(i=0;i<1000000;i++) sin(i);
i=5;
printf("I exit with %d\n",i);
exit(i);
exit(i)应该等同于exit(5)吧,这是什么意思啊不明白,有这种用法吗
我只知道exit(0),exit(1)
[此贴子已经被作者于2007-10-2 16:42:44编辑过]