Binary To Decimal C++: Program to Convert Binary to Decimal
By Rohan Vats
Updated on Feb 12, 2024 | 8 min read | 19.7k views
Share:
For working professionals
For fresh graduates
More
By Rohan Vats
Updated on Feb 12, 2024 | 8 min read | 19.7k views
Share:
Table of Contents
Throughout my career as a software developer, I’ve encountered numerous challenges that required me to dive deep into the nuances of programming languages, especially C++. One such challenge is converting binary numbers to decimal format, a task that might seem straightforward at first but is crucial for understanding the interaction between different data representations in computer systems. This experience led me to explore various methods and best practices for implementing this conversion, specifically focusing on Binary To Decimal C++ conversions.
In this article, I aim to share my insights and knowledge on this topic, guiding aspiring professionals through the intricacies of binary to decimal conversion using C++. C++ is one of the principal programming languages as it is the necessary step to learn how to ‘code’. Students are expected to learn C++ thoroughly before other programming languages such as Java, CSS, etc., are introduced through their curriculum.
We’ll start with the basics—what binary and decimal numbers are—before moving on to practical C++ programs designed to perform this conversion efficiently.
Check out our free courses to get an edge over the competition.
When the computer performs calculations within its system, the binary number thus calculated needs to be displayed to the user through a decimal number. For this purpose, a C++ program that can convert a binary number into a decimal number is used, as displayed below.
A binary number is expressed in the base-2 numeral system, which uses only two symbols: typically, 0 (zero) and 1 (one). Each digit in a binary number represents a power of 2, with the rightmost digit representing 2^0, the next 2^1, and so on. Converting these numbers into a more familiar base-10 system, or decimal, is a common task in programming. For example, using binary to decimal C++ code allows programmers to convert binary numbers into decimal numbers easily, facilitating interactions between the binary logic of computers and the decimal-based understanding of humans.
Binary Numbers can be understood by the below mentioned characteristics.
It’s a way of representing numbers that includes a decimal point to separate the whole from the fractional part. This system is commonly used in daily life for measuring, counting, and various calculations, making it easy to understand and apply.
Decimal numbers have the following characteristics:
Step 1. | #include<iostream.h> |
Step 2. | using namespace std; |
Step 3. | int main() |
Step 4. | { |
Step 5. | int num, temp, rem, dec = 0, b = 1; |
Step 6. | cout << “Enter Binary Number – ”; |
Step 7. | cin >> num |
Step 8. | temp >> num |
Step 9. | while (num > 0) |
Step 10. | { |
Step 11. | rem = temp % 10 |
Step 12. | dec = dec + rem * 2 |
Step 13. | b =*2; |
Step 14. | temp /= 10; |
Step 15. | } |
Step 16. | cout << “The decimal conversion of “ << num << “is” << dec; |
Step 17. | return 0; |
Step 18. | } |
The above C++ program will effectively convert a binary number (up to 31) into a decimal number. To convert binary numbers larger than 31 into decimal numbers, a string needs to be initialized, along with the while loop.
Check out upGrad’s Advanced Certification in DevOps
Step 1. | #include<iostream.h> |
Step 2. | #include<string.h> |
Step 3. | using namespace std; |
Step 4. | int binarytodecimal(string n) |
Step 5. | { |
Step 6. | string num = n; |
Step 7. | int dec_value = 0; |
Step 8. | int base = 1; |
Step 9. | int len = num.length( ); |
Step 10. | for (int i = len – 1; i >= 0; i–) |
Step 11. | { |
Step 12. | while (num > 0) |
Step 13. | { |
Step 14. | if (num[i] == ‘1’) |
Step 15. | dec_value += base; |
Step 16. | base = base * 2; |
Step 17. | } |
Step 18. | return dec_value; |
Step 19 | } |
Step 20 | int main( ) |
Step 21 | { |
Step 22 | string num = “10101000”; |
Step 23 | cout << binarytodecimal(num) << endl; |
Step 24 | } |
The output of the above code will be displayed as follows: “168”.
Thus, we can convert a binary to decimal C++ programming interface by utilizing the code in two different methods. Application of the given C++ program includes the display of a decimal number on the computer screen after the ALU performs mathematical calculations, as requested by the user. Since the computer processes data in ‘bits’, as series of Ones and Zeros, the processed data must be converted into decimal numbers for the user’s understanding and comprehension.
upGrad’s Exclusive Software and Tech Webinar for you –
SAAS Business – What is So Different?
Check out upGrad’s Advanced Certification in Cyber Security
To convert decimal numbers into binary numbers in the C++ programming interface, the following code must be used:
Also Read: C++ Project Ideas & Topics
This is the third program to convert binary to decimal in C++.
Step 1. | #include<iostream.h> |
Step 2. | using namespace std; |
Step 3. | void decToBinary (int n) |
Step 4. | { |
Step 5. | int binaryNu[32]; |
Step 6. | int i = 0; |
Step 7. | while (n > 0) |
Step 8. | { |
Step 9. | binaryNum[ i ] = n % 2; |
Step 10. | n = n / 2; |
Step 11. | i++; |
Step 12. | } |
Step 13. | for |
Step 14. | int (j = i – 1, j > 0; j — ) |
Step 15. | cout << binaryNum [ j ]; |
Step 16. | base = base * 2; |
Step 17. | } |
Step 18. | int main ( ) |
Step 19 | { |
Step 20 | int n = 18; |
Step 21 | decToBinary (n); |
Step 22 | return 0; |
Step 23 | } |
The output of the above code will be displayed as “10010”, for an entered input of “18”.
Learn Software Development Courses online from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs, or Masters Programs to fast-track your career.
In conclusion, the journey from understanding the basics of binary and decimal numbers to mastering Binary To Decimal C++ conversion through the implementation of various C++ programs is both enriching and essential for any programmer. The transition from binary to decimal systems is not just a fundamental concept in computer science but a crucial skill in the arsenal of developers, enabling them to bridge the gap between machine-level and human-understandable data. Through the detailed exposition of C++ Program 1, C++ Program 2, and C++ Program 3, we have delved into the practical aspects of this conversion, offering readers a comprehensive guide to tackling similar challenges with confidence and proficiency. By embedding these exact strategies and understanding the underlying principles, one can enhance their programming toolkit, paving the way for more complex and innovative applications in the future.
If you are interested to learn more and need mentorship from industry experts, check out upGrad & IIIT Banglore’s Executive PG Programme in Full-Stack Software Development.
Get Free Consultation
By submitting, I accept the T&C and
Privacy Policy
India’s #1 Tech University
Executive PG Certification in AI-Powered Full Stack Development
77%
seats filled
Top Resources