We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 95cd10e + a8d217c commit 5daa9d8Copy full SHA for 5daa9d8
chapter_5/exercise_5_04/strend.c
@@ -32,8 +32,8 @@ int strend(char *s, char *t)
32
size_t t_length = strlen(t);
33
34
// Move the s & t pointer to the end of the corresponding strings.
35
- s += s_length;
36
- t += t_length;
+ s += s_length - 1;
+ t += t_length - 1;
37
38
// Check backwards if each character from string t occurs in the corresonding
39
// location from the string s.
0 commit comments