fix: Update conversions/binary_to_decimal.c (#730)

First printf(): newline character changed from /n to \n
This commit is contained in:
Nicola Masarone 2020-10-29 22:06:30 +01:00 committed by GitHub
parent b8da721481
commit b282b95d5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
int main()
{
int remainder, number = 0, decimal_number = 0, temp = 1;
printf("/n Enter any binary number= ");
printf("\n Enter any binary number= ");
scanf("%d", &number);
// Iterate over the number until the end.