We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 64e013e + 912d704 commit 678dc80Copy full SHA for 678dc80
chapter_3/exercise_3_04/itoa.c
@@ -58,7 +58,7 @@ void str_reverse(char str1[], int index, int size)
58
str_reverse(str1, index + 1, size);
59
}
60
61
-// NOTE: It does not handle the smalles negative number because it does not have
+// NOTE: It does not handle the smallest negative number because it does not have
62
// a positive equivalent. This means that just using a expression like n = -n is
63
// not enough for the smallest negative number. If we take the absolute value of
64
// n % 10 we get the correct value and character.
0 commit comments