Program to convert Byte array to IP Address
Given a Byte Array, convert it to the format of IP Address. Examples: Input : {16, 16, 16, 16} Output : 16.16.16.16Input : {172, 31, 102, 14} Output : 172.31.102.14Byte arrays: A byte is a collection of bits (8). Byte arrays are arrays of contiguous bytes and can be used to store binary information.