用C语言实现将ipv4字符串存到struct in_addr结构体中
时间: 2024-03-13 13:46:57 浏览: 77
C语言中字符串的存储方法
5星 · 资源好评率100%
可以使用C语言中的inet_pton()函数将IPv4字符传转换为struct in_addr结构体。
函数原型如下:
```c
#include <arpa/inet.h>
int inet_pton(int af, const char *src, void *dst);
```
其中,af参数指定地址族,应设置为AF_INET;src参数为要转换的IPv4字符传;dst参数为指向存储转换结果的struct in_addr结构体的指针。
示例代码如下:
```c
#include <arpa/inet.h>
#include <stdio.h>
int main() {
const char *ipv4_str = "192.168.0.1";
struct in_addr ipv4;
if (inet_pton(AF_INET, ipv4_str, &ipv4) == 1) {
printf("IPv4 address: %s\n", inet_ntoa(ipv4));
} else {
printf("Invalid IPv4 address\n");
}
return 0;
}
```
上述代码将IPv4字符传转换为struct in_addr结构体,并打印出转换后的IPv4地址。需要注意的是,inet_ntoa()函数可以将struct in_addr结构体转换为IPv4字符传,方便输出。
阅读全文