www.pudn.com > 7_code.rar > process.c
/*process.c*/ #include #include #include int main() { /*获得当前进程的进程ID和其父进程ID*/ printf("The PID of this process is %d\n",getpid()); printf("The PPID of this process is %d\n",getppid()); }