mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-25 23:09:36 +03:00
22 lines
458 B
C
22 lines
458 B
C
|
/*
|
||
|
* C Program to Convert Binary to Hexadecimal
|
||
|
*/
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
long int binary, hexa = 0, i = 1, remainder;
|
||
|
|
||
|
printf("Enter the binary number: ");
|
||
|
scanf("%ld", &binary);
|
||
|
while (binary != 0)
|
||
|
{
|
||
|
remainder = binary % 10;
|
||
|
hexa = hexa + remainder * i;
|
||
|
i = i * 2;
|
||
|
binary = binary / 10;
|
||
|
}
|
||
|
printf("THe Equivalent hexadecimal value: %lX", hexa);
|
||
|
return 0;
|
||
|
}
|