Skip to content

Commit

Permalink
Update binary_to_decimal.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditibansal2603 authored Oct 5, 2018
1 parent b895794 commit a9d91b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conversions/binary_to_decimal.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
int main() {

int remainder, number = 0, decimal_number = 0, temp = 1;
printf("Enter any binary number= ");
printf("/n Enter any binary number= ");
scanf("%d", &number);

// Iterate over the number until the end.
Expand Down

0 comments on commit a9d91b4

Please sign in to comment.