在C語言中,可以使用getpid()
函數來獲取當前進程的PID。該函數位于<unistd.h>
頭文件中。
示例代碼:
#include <stdio.h>
#include <unistd.h>
int main() {
pid_t pid = getpid();
printf("PID: %d\n", pid);
return 0;
}
在上面的示例中,getpid()
函數將返回當前進程的PID,并將其存儲在pid
變量中,然后通過printf()
函數打印出來。