Merge pull request #114 from debck/master

Thanks for contributing
This commit is contained in:
Christian Bender 2018-01-30 01:36:05 +01:00 committed by GitHub
commit 30b1ece5a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

21
conversions/binary2hexa.c Normal file
View File

@ -0,0 +1,21 @@
/*
* 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;
}