execlp.c ***/ #include<stdio.h> #include<stdlib.h> #include<unistd.h> int main() { pid_t pid; pid = fork(); if(-1 == pid) { perror("fork ...
確定! 回上一頁