A valid IPv4 address is of the form ###.###.###.###, where each
number, separated by '.', is 8 bits [0, 255]. Create program that
validates input string containing an IP address. Use C programming
language.
- Remove any newline \n from input string
- The input prompt should say "Enter IP Address of your
choosing: "
- If IP address is invalid, it should print "You entered invalid
IP\n"
- If IP address is valid, it should print "You entered valid...