Quantcast
Channel: Programming Spark
Viewing all articles
Browse latest Browse all 25

C program to convert Binary to Hexadecimal Number

$
0
0
Here is the program to convert Binary number to hexadecimal number. Before starting with program I recommend to read  this Page .Will give you better Idea how the program will work. #include"stdio.h" #include"conio.h" #include"" #define max 100 int main() { char binaryNumber[4*max],hexaDecimal[max]; int count,len,hlen,sum,i; printf("Enter a Binary

Viewing all articles
Browse latest Browse all 25

Trending Articles