Skip to content

Commit b6a0ee5

Browse files
authoredOct 2, 2020
Program to convert binary to decimal
Create program to convert binary to decimal in C language.
1 parent c5c05c2 commit b6a0ee5

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
 

‎Convert binary to decimal

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#include <math.h>
2+
#include <stdio.h>
3+
int convert(long long n);
4+
int main() {
5+
long long n;
6+
printf("Enter a binary number: ");
7+
scanf("%lld", &n);
8+
printf("%lld in binary = %d in decimal", n, convert(n));
9+
return 0;
10+
}
11+
12+
int convert(long long n) {
13+
int dec = 0, i = 0, rem;
14+
while (n != 0) {
15+
rem = n % 10;
16+
n /= 10;
17+
dec += rem * pow(2, i);
18+
++i;
19+
}
20+
return dec;
21+
}

0 commit comments

Comments
 (0)
Please sign in to comment.