This is a C program to Convert Binary to Hexadecimal.
This program takes a binary number as input and converts to hexadecimal.
1. Take a binary number as input.
2. Divide the binary number into groups of 4 bits. For each group of 4 bits, multiply each bit with the power of 2 and add them consecutively.
3. Combine the result of all groups to get the output.
Here is source code of the C program to Convert Binary to Hexadecimal . The C program is successfully compiled and run on a Linux system. The program output is also shown below.
/*
* C Program to Convert Binary to Hexadecimal
*/
#include <stdio.h>
int main()
{
long int binaryval, hexadecimalval = 0, i = 1, remainder;
printf("Enter the binary number: ");
scanf("%ld", &binaryval);
while (binaryval != 0)
{
remainder = binaryval % 10;
hexadecimalval = hexadecimalval + remainder * i;
i = i * 2;
binaryval = binaryval / 10;
}
printf("Equivalent hexadecimal value: %lX", hexadecimalval);
return 0;
}
1. Take a binary number as input and store it in the variable binaryval.
2. Obtain the remainder and quotient of the input number by dividing it by 10.
3. Multiply the obtained remainder with variable i and increment the variable hexadecimalval with this value.
4. Increment the variable i by 2 and override the variable binaryval with the quotient obtained.
5. Repeat the steps 2-4 until the variable binaryval becomes zero.
6. Print the variable hexadecimalval as output.
Output: Enter the binary number: 10000 Equivalent hexadecimal value: 10
Sanfoundry Global Education & Learning Series – 1000 C Programs.
Here’s the list of Best Books in C Programming, Data-Structures and Algorithms
- Watch Advanced C Programming Videos
- Practice Computer Science MCQs
- Apply for C Internship
- Check C Books
- Check Computer Science Books