- 论坛徽章:
- 0
|
在网上看到一篇文章讲的是gethostbyname用法
其中举了一例代码如下
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <netdb.h>
#include <sys/types.h>
#include <netinet/in.h>
int main(int argv, char *argc[])
{
struct hostnet *h;
if(argv != 2)
{
printf(stderr,"usage :getip addresss\n");
exit(1);
}
if((h=gethostbyname(argc[1]))== NULL)
{
herror("gethostbyname");
exit(1);
}
printf("host name :%s\n",h->h_name);
printf("IP address :%s\n",inet_ntoa(*(struct in_addr*)h->h_addr));
return 0;
}
不知道参数校验中的这句if(argv != 2)有什么意义,为啥是跟2比?
还有我把这段代码放gcc编译后显示2个错误
test_gethostbyname.c:22 dereferencing pointer to incomplet type
test_gethostbyname.c:23 dereferencing pointer to incomplet type
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。 |
|