giegie666 发表于 2022-10-29 20:02:42

这哪里有问题?

#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;
}

Dengqq233 发表于 2022-10-29 20:53:41

漏了标识符。29 |错误:在' } '标记前应有标识符或'('

qsva 发表于 2022-10-30 14:42:13

错在了最后的位置多了一个括号,你可以自己对一对
}删掉一个就可以了
页: [1]
查看完整版本: 这哪里有问题?