12 lines
325 B
C
12 lines
325 B
C
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
int main(int argc, char const *argv[])
|
||
|
{
|
||
|
// 获取当前程序执行的终端名称
|
||
|
// 0 是标准输入设备
|
||
|
printf("终端名: %s, 进程号: %d, 父进程号: %d, 进程组号: %d\n", ttyname(0), getpid(), getppid(), getpgid(0));
|
||
|
return 0;
|
||
|
}
|