C PROGRAM TO CONVERT BINARY NUMBER TO DECIMAL
/* Write a C program to convert the given binary number into decimal */
#include <stdio.h>
void main()
{
int num, bnum, dec = 0, base = 1, rem ;
printf(“Enter a binary number(1s and 0s)\n”);
scanf(“%d”, &num); /*maximum five digits */
bnum = num;
while( num > 0)
{
rem = num % 10;
dec = dec + rem * base;
num = num / 10 ;
base = base * 2;
}
printf(“The Binary number is = %d\n”, bnum);
printf(“Its decimal equivalent is =%d\n”, dec);
} /* End of main() */
/*———————————————
Output:
Enter a binary number(1s and 0s)
10101
The Binary number is = 10101
Its decimal equivalent is =21
———————————————-*/
Similar Posts:
- C PROGRAM TO CONVERT DECIMAL TO BINARY NUMBER AND COUNT NUMBER OF 1′S IN IT
- C PROGRAM TO FIND THE SUM OF INDIVIDUAL DIGITS OF A POSITIVE INTEGER
- C PROGRAM TO ACCEPT N INTEGERS AND STORE THEM IN AN ARRAY
- C PROGRAM TO INSERT A PARTICULAR ELEMENT IN A SPECIFIED POSITION IN GIVEN ARRAY
- C PROGRAM TO SWAP TWO NUMBERS
Categories:PREPARATION MATERIALS;Tags: BINARY DECIMAL CONVERSION, C, C PROGRAM, C PROGRAM CODE, C PROGRAM TO CONVERT BINARY TO DECIMAL, C PROGRAMS, C-PROGRAMMING, CONVERT BINARY TO DECIMAL, EXECUTED, OUTPUT, WRITE A C PROGRAM TO CONVERT BINARY TO DECIMAL
Free Email Newsletter
And then confirm your email subcription


9 Comments to “C PROGRAM TO CONVERT BINARY NUMBER TO DECIMAL”
Pls can you give me a more detailed way of converting binary to decimal am a begineer in C programming
this was very helpful.thanks a lot for such a simple code.where can i find such simple codes for different problems of array?
nice one dude
keep uploading
Can i get some programs in assembly level languages, preferably programs in 8086.
regards.
thank u for posting this usefull programs
very import to known this program
sharma mahendra
y cant v give 8 digit binary number? how can v write such type of a program with input of 8 digit binary number
cool dude…
the program to convert binary to decimal is really awesome and different without using pow() function. thanks a lot
Very nice and simple code. thank you. i really had a hard time while i was trying to use the
pow() function.