aboutsummaryrefslogtreecommitdiff
path: root/Palindrome/Palindrome.c
diff options
context:
space:
mode:
authorHyder <hyder@hyderhadi.xyz>2025-08-18 19:08:30 +0300
committerHyder <hyder@hyderhadi.xyz>2025-08-18 19:08:30 +0300
commitfb0c97cb976b4d2f14fc5dea9ffbb35fa3149b81 (patch)
tree774514c8b5c44276e1e869bfecaeff323bb30e25 /Palindrome/Palindrome.c
parent06810e8041b75d888615b73592215fe92088f0a7 (diff)
I have sorted numbers using selection sort :D
Diffstat (limited to 'Palindrome/Palindrome.c')
-rw-r--r--Palindrome/Palindrome.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Palindrome/Palindrome.c b/Palindrome/Palindrome.c
index cf01782..6a70b80 100644
--- a/Palindrome/Palindrome.c
+++ b/Palindrome/Palindrome.c
@@ -1,7 +1,7 @@
#include <stdio.h>
-// i made string_length equal tp (-1) cause string indices start from number 0, probably there is a better way represent what i want :(
+// i made string_length equal to (-1) cause string indices start from number 0, probably there is a better way to represent what i want :(
char *reverse_string(char *string_input) {
int string_length = -1;