binary to decimal conversion

This commit is contained in:
Chetanya Chopra 2016-07-22 01:07:09 -07:00 committed by GitHub
parent 6a0b0dfab7
commit c87361a5cc

17
binarytodecimal.cpp Normal file
View File

@ -0,0 +1,17 @@
#include<stdio.h>
#include<conio.h>
int main(){
int number,decimal_number,temp=1;
printf("Enter any binary number= ");
scanf("%d",&number);
int remainder;
while(number>0){
remainder= number%10;
number=number/10;
decimal_number+=remainder*temp;
temp=temp*2;//used as power of 2
}
printf("%d",decimal_number);
}