Skip to content

Commit

Permalink
Merge pull request TheAlgorithms#161 from Aditibansal2603/master
Browse files Browse the repository at this point in the history
Update binary_to_decimal.c
  • Loading branch information
ashwek authored Feb 11, 2019
2 parents c6583d3 + a9d91b4 commit 28e13c6
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 28e13c6

Please sign in to comment.