C++学习记录

#include <stdio.h>
#include <process.h>
#include <sys/types.h>

int main()
{
    pid_t pid;
    pid = getpid();
    printf("%d\n" ,pid);
    getchar();
}
获取程序进程编号

 

posted @ 2016-04-25 10:48  岑小良  阅读(98)  评论(1编辑  收藏  举报