int num, bin[50], dec, i=1, j;
printf("Enter the decimal number : ");
scanf("%d",&dec);
num = dec;
while(num!=0)
{
bin[i++] = num%2;
num = num/2;
}
printf("\nBinary equivalent of %d : ",dec);
for(j=i-1;j>0;j--)
{
printf("%d",bin[j]);
}
getch();
}
Chat with our AI personalities
The binary equivalent of the hexadecimal number EF16 is 1110111100010110.
The number 111 in binary would be 1101111
The binary equivalent of the decimal number 63 is 111111.
The binary equivalent is 101110000. If you're using Windows 7, the built-in calculator will convert numbers between base 10, 8, 2 & hex
The binary equivalent of the decimal number 14 is 00001110.