how to create Program to convert 2-digit octal number into binary number and print it
Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about how to create Program to convert 2-digit octal number into binary number and print it .So let’s go to our topic #include <iostream.h> #include <conio.h> void octobin(int); void main() { clrscr(); int a; cout << “Enter a 2-digit octal number … Read more