我刚开始使用C编程。这应该是一个简单的程序,但我得到一个分段错误。我会很感激任何hlep
此致
涓
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include<errno.h>
#include<netdb.h>
#include<sys/socket.h>
#include<netinet/in.h>
int main(int argc, char **argv)
{
struct hostent *hp;
struct in_addr **addr_list;
if ((hp = gethostbyname("www.yahoo.ca")) == NULL)
{
printf("gethostbyname() failed\n");
}
else
{
printf("Official name = %s\n", hp->h_name);
addr_list = (struct in_addr **)hp->h_addr_list;
unsigned int i = 0;
while (addr_list[i] != NULL)
{
printf("%s\n",inet_ntoa(*((struct in_addr *)hp->h_addr)));
i++;
}
}
}
以下是程序的调用方式:
administrator@ubuntu:~/Documents$ ./a.out
Official name = any-rc.a01.yahoodns.net
Segmentation fault (core dumped)
administrator@ubuntu:~/Documents$
答案 0 :(得分:3)
而不是hp->h_addr
你可能想要:
printf("%s\n", inet_ntoa(*addr_list[i]));
作为旁注,gethostbyname
已过时:您应使用getaddrinfo
。正如您将注意到的,该标准的较新版本甚至没有提及gethostbyname
。