- 论坛徽章:
- 0
|
今日在学习linux进程方面的编程,抄写了一个小程序,当场被“吓”得“语无伦次”,且看源程序:
/*fork.c*/
#include<stdio.h>
#include<unistd.h>
int main(void) {
for(int i =0; i < 2; ++i) {
int j = fork();
printf("- %4d %4d", i, j);
}
}
进行编译运行的结果:
[root@centos testfork]# gcc -Wall -std=c99 fork.c
[root@centos testfork]# ./a.out
- 0 3724 - 1 3725 [root@centos testfork]# - 0 3724 - 1 0 - 0 0 - 1 3726 - 0 0 - 1 0
/*forkn.n*/
#include<stdio.h>
#include<unistd.h>
int main(void) {
for(int i =0; i < 2; ++i) {
int j = fork();
printf("- %4d %4d\n", i, j);
}
}
进行编译运行的结果:
[root@centos testfork]# gcc -Wall -std=c99 forkn.c
[root@centos testfork]# ./a.out
- 0 3792
- 1 3793
[root@centos testfork]# - 0 0
- 1 0
- 1 3794
- 1 0
一个是“-”八次输出,一个是“-”六次输出、、、、、求大侠指点 |
|