C program to convert Binary to Octal number system
Example Input Input binary number: 00110111 Output Octal number: 67 Logic to convert Binary to Octal number system To make things simple and sound, I have divided the logic in two easy steps. Group all binary bits to 3 digits starting from right side. Write corresponding octal value for each grouped binary value. Binary to…
Read More “C program to convert Binary to Octal number system” »
