×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Difference between Structure and Class - MAKAUT / WBUT MCA Slove
convert a binary numbers to equivalent decimal number in C Language - MAKAUT / WBUT MCA 2011 - C Language
1507    Arnab De    14/11/2019

Write a c program to convert a binary numbers to equivalent decimal number. [WBUT MCA 2011]

softetechnologies
#include <stdio.h>
#include <math.h>

int main()
{
	char nos[20];
	int i,fl=1,res=0,temp;
	printf("Enter A Numbers : ");
	gets(nos);
	//check for valid binary number
	for(i=0;nos[i]!='\0';i++)
	{
		//48 and 49 is the ascii code for 0 and 1 respectively
		if(nos[i] < 48 || nos[i] >  49)
		{
			fl=0;
			break;
		}
 	}
	if(fl)
	{
		strrev(nos);
		puts(nos);
		for(i=0;nos[i]!='\0';i++)
		{
			temp=nos[i]-48;
			res += temp * pow(2,i);
		}
		printf("Binary eqivalent of %s is %d",nos,res);
	}
	else
	{
		printf("!!! *** INVALID BINARY NUMBER *** !!!");
	}
}
softetechnologies

Output

======

Enter A Numbers : 1011

Binary eqivalent of 1101 is 11

Difference between Structure and Class - MAKAUT / WBUT MCA Slove
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Nelson Mandela
An educated, enlightened and informed population is one of the surest ways of promoting the health of a democracy.
Nelson Mandela
2180
69.49
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     50614
25/06/2018     42603
01/01/2018     41784
28/06/2017     39566
02/08/2017     38355
01/08/2017     32580
06/07/2017     32275
15/05/2017     31731
14/07/2017     27865
11/09/2018     27602
softetechnologies