Write a program to convert the given binary number to a decimal number.

Source Code

#include<stdio.h>
#include<conio.h>
#include<math.h>
int main (int argc, char *argv[])
{
  clrscr();
  int n,num,t,d=0;
  printf("\n Enter the binary number:");
  scanf("%d",&n);
  num=n;
  t=0;
  while(n>0)
  {
        d+=pow(2,t)*(n%10);
        n=n/10;
        t++;
  }
  printf("\n The decimal equivalent of %d is %d",num,d);
  getch();
}

Find More from our code collection
Armstrong number, binary number to a decimal number, bubble sort, decimal number to binary number, factorial of the given number factors, fibonacci numbers, HCF and LCM, matrix, mergesort, salary of the employee. palindrome, quadratic equation, star patterns, series etc. and much more...
#Return to Example Source Code