1 Star 0 Fork 0

EdwardWXR/C++_fromZeroToOne

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
inet_ntop.c 494 Bytes
一键复制 编辑 原始数据 按行查看 历史
EdwardWXR 提交于 2021-12-17 23:13 . learn a little cpp
#include <stdio.h>
#include <arpa/inet.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
char addr[32];
if (argc != 2)
{
printf("Uage : ./hex2dd 0x000");
return -1;
}
// int p = atoi(argv[1]);
// printf("%d\n", p);
// inet_ntop(AF_INET, &(p), addr, 4);
//
struct in_addr s;
inet_pton(AF_INET, argv[1], &s);
const char *p = inet_ntop(AF_INET, &s.s_addr, addr, sizeof(s));
printf("%d\n", (int)s.s_addr);
if (NULL != p)
printf("%s\n", p);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/edwardwxr/CPPfromZeroToOne.git
[email protected]:edwardwxr/CPPfromZeroToOne.git
edwardwxr
CPPfromZeroToOne
C++_fromZeroToOne
master

搜索帮助