这哪里有问题?
#include <sys/types.h>#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
int main(void){
pid_t pid,pid1;
char *message;
int n;
pid = fork();
if (pid < 0)
{ perror("fork failed");
exit(1); }
if (pid == 0) {
printf("child1 pid is %d\n",getpid());
for(n=0;n<26;n++){
sleep(1);
printf("%c\n",'a'+n);
}
} else if(pid1>0){
printf("parent pid is %d\n",getppid());
wait();
for(n=0;n<26;n++){
sleep(1);
printf("%d\n",n);
}
}
}
return 0;
} 漏了标识符。29 |错误:在' } '标记前应有标识符或'(' 错在了最后的位置多了一个括号,你可以自己对一对
}删掉一个就可以了
页:
[1]