To convert a binary number to a decimal number
Program:
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int i = 0, j = 0, sum = 0;
long int n;
clrscr();
printf("Enter the binary number : ");
scanf("%ld", &n);
if(n != 0)
{
i = n % 10;
if(i == 0 || i == 1)
{
while(n != 0)
{
i = n % 10;
sum = sum + i * pow(2, j);
n = n / 10;
j++;
}
}
}
if(sum == 0)
printf("\nThe number is not a binary number");
else
printf("\nThe equivalent decimal number is : %d", sum);
getch();
}
Output:
Case: 1
Enter the binary number : 1100
The equivalent decimal number is : 12
Case: 2
Enter the binary number : 15
The number is not a binary number
-
UpdatedDec 30, 2019
-
Views4,822
You May Like
Program to maintain employee details using structures
Program to maintain student details using structures
Check whether the person is eligible to vote or not
Print the numbers that are divisible by a given no.
Program to generate magic square
To sort the given numbers in ascending & descending order