We can obtain a decimal number by multiplying each digit of binary number with power of 2 and adding each multiplication result. The power starts from 0 and goes to n-1 where n is the total number of digits in binary number.
Below is the program to implement this in C.
Convert Binary to Decimal in C
Output
Enter any binary number: 111
The decimal conversion of 111 is 7
0 comments:
Post a Comment