Linux练习(wait父进程等待子进程)

#include <sys/types.h> #include <sys/wait.h> #include <unistd.h> #include <stdio.h> int main() { pid_t pid; char *m; int n; pid=fork(); if(pid==0) {
相关文章
相关标签/搜索