在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()
函数打印出来。