From 8282804d6813744cb880abec39c066f3a41d138d Mon Sep 17 00:00:00 2001 From: Nicola Masarone Date: Thu, 29 Oct 2020 22:25:36 +0100 Subject: [PATCH] Update binary_to_hexadecimal.c Last printf() upper/lower case fix: from "THe" to "The" and from "Equivalent" to "equivalent" --- conversions/binary_to_hexadecimal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conversions/binary_to_hexadecimal.c b/conversions/binary_to_hexadecimal.c index 12cec711..4235a07b 100644 --- a/conversions/binary_to_hexadecimal.c +++ b/conversions/binary_to_hexadecimal.c @@ -16,6 +16,6 @@ int main() i = i * 2; binary = binary / 10; } - printf("THe Equivalent hexadecimal value: %lX", hexa); + printf("The equivalent hexadecimal value: %lX", hexa); return 0; }