Merge pull request #731 from nicola-masarone/patch-1

Update binary_to_hexadecimal.c
This commit is contained in:
Ayaan Khan 2021-02-11 10:17:01 +05:30 committed by GitHub
commit 2af0c48da8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}