Linux C語言多進程入門

fork函數使用 #include <unistd.h> #include <stdio.h> int main(void) { pid_t pid; pid = fork(); if(pid==-1) printf("fork error\n"); else if(pid==0) { printf("the returned value is %d\n", pid); p
相關文章
相關標籤/搜索