重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
#include#include #include #include #include #include #include int main(int argc,char *argv[]) { struct hostent *hptr; struct in_addr hpaddr; //定义一个地址结构体 if((hptr = gethostbyname(argv[1])) == NULL) { printf("请输入域名.\n"); return 1; } else { memcpy(&hpaddr,&hptr->h_addr,4); //拷贝ip地址 printf("IP地址为%s.\n",inet_ntoa(hpaddr)); } return 0; }