C Program to convert a binary number into its equivalent Decimal. In binary number system or base-2 system numeric valuer are represented by using two different symbols 0 and 1. The binary number system is a positional notation with a radix of 2.
Read more here: What are binary, octal, and hexadecimal notation?
This program converts a given base-2 number to it’s decimal equivalent (or base-10 representation).
The Program
[gist id=”d67b0d3858c5c4238e39292e8b970b91″]
Sample Output

Related Programs
- C program to convert a Binary number into its equivalent Decimal, Octal and Hexadecimal numbers
- C program to find the 2’s complement of a binary number
- C Program to convert a given decimal number into its binary equivalent
Edit1: 21st August 2017
- Added links to related programs
- Added a screenshot of sample output
- Moved program to it’s own gist.
To get regular updates on new C programs, you can Follow @c_program.
You can discuss these programs on our Facebook Page.
Like to get updates right inside your feed reader? Grab our feed!
(c) www.c-program-example.com
1 comment on “Binary To Decimal in C”