I have an IP address stored in in_addr_t and I want to create the corresponding string representation of this data type (e.g. in_addr_t to 10.0.0
in_addr_t
10.0.0
char *inet_ntoa(struct in_addr in); is the desired function.
char *inet_ntoa(struct in_addr in);