<p>
<font color="#008000">#include <stdio.h><br>
<br>
#include <conio.h><br>
<br>
#include <winsock.h></font><br>
<br>
<br>
<br>
<br>
<br>
<strong>void</strong> main(int argc, char * argv[])<br>
<br>
<strong>{</strong><br>
<br>
<br>
<br>
<strong>if</strong>(argc==2)<br>
<br>
<strong>{</strong><br>
<br>
WSADATA wsaData<strong>;</strong><br>
<br>
<br>
<br>
<strong>if</strong>(WSAStartup(MAKEWORD( 1, 1 ),<br>
&wsaData)==0)<br>
<br>
<strong>{</strong><br>
<br>
<font color="#FF0000"><br>
/* Define addr here */</font><br>
<br>
<strong>struct</strong><br>
hostent *hostinfo=gethostbyaddr(addr, 4, AF_INET)<strong>;</strong><br>
<br>
<br>
<br>
<strong>if</strong><br>
(hostinfo!=NULL)<br>
<br>
<strong>{</strong><br>
<br>
<br>
printf("%s", hostinfo->h_name)<strong>;</strong><br>
<br>
<strong>}</strong><br>
<br>
<strong>else</strong><br>
<br>
<strong>{</strong><br>
<br>
<br>
printf("%s", "error")<strong>;</strong><br>
<br>
<strong>}</strong><br>
<br>
<strong>}</strong><br>
<br>
getche()<strong>;</strong><br>
<br>
<strong>}</strong><br>
<br>
<strong>}</strong></p>