加入收藏 | 设为首页 | 会员中心 | 我要投稿 北几岛 (https://www.beijidao.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

C语言获取当前登陆的用户名的UID

发布时间:2021-05-21 04:52:27 所属栏目:大数据 来源: https://blog.csdn.net/yilovex
导读:#include stdio.h#include stdlib.h#include unistd.hint main(void) {int pwd = getuid();printf("当前登陆用户名的UID为:%dn",pwd);return EXIT_SUCCESS;}
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int main(void) {

	int pwd = getuid();
	printf("当前登陆用户名的UID为:%dn",pwd);

	return EXIT_SUCCESS;
}

(编辑:北几岛)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读