C++获取本机IP地址信息

时间:2022-07-09 07:36:12
#include<winsock2.h>
#include<iostream>
#include<string>
using namespace std;
#pragma comment(lib, "WS2_32.lib") string getIP()
{
WSADATA WSAData;
char hostName[];
if (!WSAStartup(MAKEWORD(, ),&WSAData))
{
if(!gethostname(hostName,sizeof(hostName)))
{
hostent *host=gethostbyname(hostName);
if(host!=NULL)
{
return inet_ntoa(*(struct in_addr*)*host->h_addr_list);
}
}
}
return "Get IP failed.";
} int main()
{
cout<<"IP地址为:"<<getIP()<<endl;
system("pause");
return ;
}