C Source Codes List | Source Code Home
Program : Program to display decimal equivalent of a i/p binary number.
/* Prg. to display decimal equivalent of a i/p binary number */
#include
#include
#include
void btod(int b[]);
int c;
void main()
{
int a[5],d,i,e,f,g;
clrscr();
printf("What will be the length of input no.? ");
scanf("%d",&c);
printf("Don't exceed input from your input limit or 5 digits in any case");
printf("\nEnter no.:- ");
scanf("%d",&d);
for (i=c-1;i>=0;--i)
{
e = pow(10,i);
a[i] = d/e;
d = d%e;
}
btod(a);
printf("\n\n\n\n\n\t\t\tHAVE A NICE DAY! BYE.");
getch();
}
void btod(int b[])
{
int k,s=0,i,n;
n=*b;
for (i=c-1;i>=0;--i)
{
if (i>0)
*b=*(b+i);
else
*b=n;
if (*b==1)
{
k=pow(2,i);
s=s+k;
}
}
printf("\nIts decimal equivalent is %d",s);
return;
}
C Source Codes List | Source Code Home
|
|