Update binary_to_hexadecimal.c

Last printf() upper/lower case fix: from "THe" to "The" and from "Equivalent" to "equivalent"
This commit is contained in:
Nicola Masarone 2020-10-29 22:25:36 +01:00 committed by GitHub
parent b282b95d5b
commit 8282804d68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ int main()
i = i * 2; i = i * 2;
binary = binary / 10; binary = binary / 10;
} }
printf("THe Equivalent hexadecimal value: %lX", hexa); printf("The equivalent hexadecimal value: %lX", hexa);
return 0; return 0;
} }