Write a function to decode an octal string to a number in an array of bytesFrom the problem statement it's clear that the octal string is first converted into binary string and then the binary string is converted into decimal value bytes (8 bits each). If the binary string is...