1 Star 0 Fork 0

BostonHsu/PuringMyCPlusPlusTech

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
try_pton.c 334 Bytes
一键复制 编辑 原始数据 按行查看 历史
bostonhsu 提交于 2023-09-24 15:47 . Try inet_pton and inet_ntop.
#include <stdio.h>
#include <arpa/inet.h>
int main(void)
{
char* ip_addr = "192.168.18.10";
int ip_addr_hex;
char ip_addr_dot[20] = {0};
inet_pton(AF_INET, ip_addr, &ip_addr_hex);
printf("%X\n", ip_addr_hex);
inet_ntop(AF_INET, (void*)&ip_addr_hex, ip_addr_dot, sizeof(ip_addr_dot));
printf("%s\n", ip_addr_dot);
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/bostonhsu/puring-my-cplus-plus-tech.git
[email protected]:bostonhsu/puring-my-cplus-plus-tech.git
bostonhsu
puring-my-cplus-plus-tech
PuringMyCPlusPlusTech
master

搜索帮助