概述
返回当前主机的名字,原型为:
#include <unistd.h>
int gethostname(char *name, size_t namelen);
成功返回0,失败返回-1
代码如下 :
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#define BUFLEN 128
int main(int argc, char **argv)
{
char buf[BUFLEN];
if (gethostname(buf, sizeof(buf)) < 0) {
printf("gethostname error:%sn", strerror(errno));
return -1;
}
printf("hostname=%sn", buf);
return 0;
}
输出为:
最后
以上就是潇洒美女为你收集整理的网络编程学习笔记(gethostname函数)的全部内容,希望文章能够帮你解决网络编程学习笔记(gethostname函数)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复