- C++ Programming Examples
- C++ Programming Examples
- C++ Hello World
- C++ Get Input
- C++ Print Integer
- C++ Add Two Numbers
- C++ Add Sub Mul Div
- C++ Add Digits
- C++ Find Average Perc
- C++ Find Arithmetic Mean
- C++ Sum of n Natural Numbers
- C++ Sum of n Numbers
- C++ Area Perimeter of Square
- C++ Area Perimeter of Rectangle
- C++ Area Perimeter of Triangle
- C++ Area Circum of Circle
- C++ Find Simple Interest
- C++ Fahrenheit to Celsius
- C++ Celsius to Fahrenheit
- C++ Print Prime Numbers
- C++ Reverse a Number
- C++ Swap Two Numbers
- C++ Print Multiplication Table
- C++ Find Factorial of Number
- C++ Find Factors of Number
- C++ Find HCF & LCM
- C++ Make Calculator
- C++ Count Digits in Number
- C++ Sum of First & Last Digit
- C++ Product of Digits of Number
- C++ Sum of Squares of Digits
- C++ Interchange Digits of Number
- C++ if else Programs
- C++ Check Even or Odd
- C++ Check Prime or Not
- C++ Check Alphabet or Not
- C++ Check Vowel or Not
- C++ Check Leap Year or Not
- Check Reverse equal Original
- C++ Check Perfect Number
- C++ Check Palindrome or Not
- C++ Check Armstrong or Not
- C++ Divisibility Test
- C++ Find Wage of Labor
- C++ Find Discounted Price
- C++ Find Shipping Charge
- C++ Find Telephone Bills
- C++ Calculate Student Grade
- C++ Largest of Two Numbers
- C++ Largest of Three Numbers
- C++ Number Conversion
- C++ Decimal to Binary
- C++ Decimal to Octal
- C++ Decimal to Hexadecimal
- C++ Binary to Decimal
- C++ Binary to Octal
- C++ Binary to Hexadecimal
- C++ Octal to Decimal
- C++ Octal to Binary
- C++ Octal to Hexadecimal
- C++ Hexadecimal to Decimal
- C++ Hexadecimal to Binary
- C++ Hexadecimal to Octal
- C++ Pattern Programs
- C++ Pattern Programs
- C++ Print Diamond Pattern
- C++ Print Floyd's Triangle
- C++ Print Pascal's Triangle
- C++ Array Programs
- C++ 1D Array Program
- C++ Linear Search
- C++ Binary Search
- Find Largest Element in Array
- Find Smallest Element in Array
- Find Second Largest Element
- Find Second Smallest Element
- C++ Sum of All Elements
- C++ Multiply All Elements
- C++ Element on Even Position
- C++ Element on Odd Position
- C++ Print Even Numbers in Array
- C++ Print Odd Numbers in Array
- C++ Count Even/Odd Numbers
- C++ Sum of Even/Odd Numbers
- C++ Count Positive Negative Zero
- C++ Reverse an Array
- C++ Insert Element in Array
- C++ Delete Element from Array
- C++ Merge two Arrays
- C++ Bubble Sort
- C++ Selection Sort
- C++ Insertion Sort
- C++ Common Elements
- C++ 2D Array Programs
- C++ Add Two Matrices
- C++ Subtract Two Matrices
- C++ Transpose Matrix
- C++ Multiply Two Matrices
- C++ 3D Array Programs
- C++ String Programs
- C++ Print String
- C++ Find Length of String
- C++ Compare Two Strings
- C++ Copy String
- C++ Concatenate String
- C++ Reverse a String
- C++ Delete Vowels from String
- C++ Delete Word from String
- C++ Count Character in String
- C++ Count Word in String
- C++ Frequency of Word
- C++ Remove Spaces from String
- C++ Sort a String
- C++ Uppercase to Lowercase
- C++ Lowercase to Uppercase
- C++ Swap Two Strings
- C++ Check Anagram or Not
- C++ Capitalize All Words in String
- C++ Capitalize Specific Character
- C++ Get Numbers from String
- C++ File Programs
- C++ Read a File
- C++ Write Content to File
- C++ Append Data in File
- C++ Read & Display File
- C++ Copy a File
- C++ Merge Two Files
- Count Characters, Words in File
- C++ Capitalize All Words in File
- C++ List Files in Directory
- C++ Delete a File
- C++ Encrypt & Decrypt a File
- C++ Misc Programs
- C++ Print ASCII Value
- C++ Add Binary Numbers
- C++ Generate Random Numbers
- C++ Print Smiling Face
- C++ Days into Years, Months
- Add Two Numbers using Pointer
- C++ Print Fibonacci Series
- Generate Armstrong Numbers
- C++ Find nCr and nPr
- C++ Get IP Address
- C++ Print Date/Time
- C++ Shutdown, Restart Computer
- C++ Programming Tutorial
- C++ Tutorial
- C++ Programming Test
- C++ Programming Test
- Give Online Test
- All Test List
C++ Program to Convert Hexadecimal to Binary
In this article, you will learn and get code on hexadecimal to binary conversion in C++. But if you're not aware about simple steps and formula used for the conversion, then you can refer to hexadecimal to binary to get every required things.
Hexadecimal to Binary in C++
To convert hexadecimal number to binary number in C++ programming, you have to ask from user user to enter the hexadecimal number first. And then convert it into its equivalent binary value and print the equivalent binary value as output.
You can create the program in two ways:
- Either directly print the equivalent 4-bit binary value of each and every hexadecimal digit (hex digit) one by one, using switch case
- Or use strcat() function, to concatenate each and every 4-bit binary equivalent of hex digit(s) in a variable say binaryNum[], and then print the value of binaryNum[] at last. That is, first convert, then print
Print Binary Equivalent of Hexadecimal Input
This program uses switch case to match and print binary equivalent of each and every hex digit.
#include<iostream> using namespace std; int main() { int i=0; char hexDecNum[10]; cout<<"Enter the Hexadecimal Number: "; cin>>hexDecNum; cout<<"\nEquivalent Binary Value = "; while(hexDecNum[i]) { switch(hexDecNum[i]) { case '0': cout<<"0000"; break; case '1': cout<<"0001"; break; case '2': cout<<"0010"; break; case '3': cout<<"0011"; break; case '4': cout<<"0100"; break; case '5': cout<<"0101"; break; case '6': cout<<"0110"; break; case '7': cout<<"0111"; break; case '8': cout<<"1000"; break; case '9': cout<<"1001"; break; case 'A': case 'a': cout<<"1010"; break; case 'B': case 'b': cout<<"1011"; break; case 'C': case 'c': cout<<"1100"; break; case 'D': case 'd': cout<<"1101"; break; case 'E': case 'e': cout<<"1110"; break; case 'F': case 'f': cout<<"1111"; break; default: cout<<"--Invalid Hex Digit ("<<hexDecNum[i]<<")--"; } i++; } cout<<endl; return 0; }
This program was build and run under Code::Blocks IDE. Here is its sample run:
Now supply hexadecimal number input say 2AD3 and press ENTER
key to print its equivalent
binary value as shown in the output given below:
The dry run of above program with hexadecimal input say 2AD3 goes like:
- Initial value, i=0
- When user enters hexadecimal number say 2AD3, then it gets initialized to hexDecNum in a way
that:
- hexDecNum[0]=2
- hexDecNum[1]=A
- hexDecNum[2]=D
- hexDecNum[3]=3
- Now the condition of while loop gets evaluated. That is, the condition hexDecNum[i] or hexDecNum[0] evaluates to be true, because there is a value 2 is available at hexDecNum[0]
- Because the condition evaluates to be true, therefore program flow goes inside the loop and using switch, the character gets matched with all the 15 cases
- That is, checks whether the character present at hexDecNum[i] or hexDecNum[0] is equal to any of the 15 character cases such as 0, 1, 2, ...., A, a, B, ..., f or not
- If it equals to any of the 15 characters, then print its equivalent 4-bit binary value. Otherwise the default case gets executed
- Now the value of i gets incremented and program flow goes back and evaluates the condition of while loop again
- When the value of i becomes equal to 4, then the condition hexDecNum[4] evaluates to be false, because at 4th index, no any further character is available, rather a null terminated character (\0) is available at fourth index.
- On continuing the process, we'll get the binary equivalent of 2AD3 hexadecimal input as 0010101011010011. Where 2=0010, A=1010, D=1101, and 3=0011
What if User enters an Invalid Hexadecimal digit ?
In a case, if user enters an invalid hexadecimal digit. For example, if user enters hexadecimal input in following ways (containing one or more invalid hex digit, with or without valid ones):
- Z - One invalid hexadecimal digit
- 2DZSA - An invalid hexadecimal digit, in between valid ones
- TR - Two invalid hexadecimal digit
In all the three cases, if the program (created above) found any hexadecimal digit (without caring where and how it presents), a message --Invalid Hex Digit (HexDigit)-- gets printed in a way that:
- For first case
--Invalid Hex Digit (Z)--
gets printed - For second case
00101101--Invalid Hex Digit (Z)----Invalid Hex Digit (S)--1010
gets printed. Where 0010 and 1101 are the hexadecimal values of 2 and D. And at last 1010 is the hexadecimal value of A - For third case
--Invalid Hex Digit (T)----Invalid Hex Digit (S)--
gets printed
Here is the sample output for second case:
Note - Above program doesn't convert given hexadecimal number into its equivalent binary value. Rather it just prints the binary equivalent using switch case.
Now let's create another program that actually converts the number from hexadecimal to binary.
Convert Hexadecimal to Binary
This program uses strcat() function to concatenate the binary equivalent of each and every hexadecimal digit (hex digit) one by one to a variable say binaryNum[]. And finally prints its value as output.
#include<iostream> #include<string.h> using namespace std; int main() { int i=0, chk=0; char hexDecNum[10], binaryNum[40]=""; cout<<"Enter the Hexadecimal Number: "; cin>>hexDecNum; while(hexDecNum[i]) { switch(hexDecNum[i]) { case '0': strcat(binaryNum, "0000"); break; case '1': strcat(binaryNum, "0001"); break; case '2': strcat(binaryNum, "0010"); break; case '3': strcat(binaryNum, "0011"); break; case '4': strcat(binaryNum, "0100"); break; case '5': strcat(binaryNum, "0101"); break; case '6': strcat(binaryNum, "0110"); break; case '7': strcat(binaryNum, "0111"); break; case '8': strcat(binaryNum, "1000"); break; case '9': strcat(binaryNum, "1001"); break; case 'A': case 'a': strcat(binaryNum, "1010"); break; case 'B': case 'b': strcat(binaryNum, "1011"); break; case 'C': case 'c': strcat(binaryNum, "1100"); break; case 'D': case 'd': strcat(binaryNum, "1101"); break; case 'E': case 'e': strcat(binaryNum, "1110"); break; case 'F': case 'f': strcat(binaryNum, "1111"); break; default: chk = 1; break; } i++; } if(chk==0) cout<<"\nEquivalent Binary Value: "<<binaryNum; else cout<<"\nInvalid Hexadecimal Digit"; cout<<endl; return 0; }
Here is its sample run with hexadecimal number input as AabB:
Same Program in Other Languages
- C Hexadecimal to Binary Conversion
- Java Hexadecimal to Binary Conversion
- Python Hexadecimal to Binary Conversion
« Previous Program Next Program »