我是靠谱客的博主 专注小懒猪,这篇文章主要介绍获取本机hostname,现在分享给大家,希望可以做个参考。

#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <netdb.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <arpa/inet.h>
 
int main(int argc ,char **argv)
{
    char hostname[32 + 1];
    
    if(gethostname(hostname, sizeof(hostname)))
    {       
        printf("hostname = %sn",hostname);
    }

    return 0;
}

最后

以上就是专注小懒猪最近收集整理的关于获取本机hostname的全部内容,更多相关获取本机hostname内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(78)

评论列表共有 0 条评论

立即
投稿
返回
顶部