csapp ch11.3 练习题

在这里插入图片描述
代码

#include "csapp.h"
#include 
void pton(const char * src) {
    struct in_addr dst;
    inet_pton(AF_INET, src, (void*)&dst);
    printf("%s -> 0x%x\n", src, ntohl(dst.s_addr));
}
void ntop(const uint32_t hex) {
    struct in_addr src;
    src.s_addr = htonl(hex);
    char dst[20];
    inet_ntop(AF_INET, (void*)&src, dst, INET_ADDRSTRLEN);
    printf("0x%x -> %s\n", src.s_addr, dst);
}
int main (int argc, char **argv) {
    pton(argv[1]);
}

运行结果
csapp ch11.3 练习题_第1张图片
答案
csapp ch11.3 练习题_第2张图片
csapp ch11.3 练习题_第3张图片

你可能感兴趣的:(csapp ch11.3 练习题)