Check out this video too on using recursion to check if a string is a palindrome! 🙂 kzbin.info/www/bejne/sILFiWmobbKUna8.
@victor.san32 жыл бұрын
Your code is really elegant and straightforward it makes so much easier to understand. Also, great pedagogical skills there. Thanks a lot!
@PortfolioCourses2 жыл бұрын
Thank you so much for the positive feedback Victor, and you're very welcome! 😀
@pratikthapa62182 жыл бұрын
this was the way i actually wanted to do it thanks mate upload more of this you are a clever man
@PortfolioCourses2 жыл бұрын
You're welcome Pratik! :-) If you liked this video then you might you like some of the other videos in this playlist: kzbin.info/www/bejne/qZbTfGitabqYppI
@srujanreddy8023Ай бұрын
hey kevin, firstup a big thanks for eveything. i just thought can we make use of strrev and strcmp and conclude if the given string is palindrome or not......
@pogCibi Жыл бұрын
I have a question, doesn't the strings also have a terminating null character 0? So why is it not a problem when we are taking it's lenght?
@PortfolioCourses Жыл бұрын
The length returned by strlen() does not count the null terminator, so that’s why it works out correctly length-wise.
@pogCibi Жыл бұрын
@@PortfolioCourses Thank you!
@EuaggelosSP2 жыл бұрын
What do I do if I want my program to ignore cases, for example if I input Wow it says its not a palindrome because of the capital W.
@PortfolioCourses2 жыл бұрын
Great question! :-) One thing you could do is include the ctype libray at the top of the file with #include and then change this line to: if (tolower(string[i]) != tolower(string[len - i - 1])) return false; The tolower() function will convert both letters to lowercase letters (if they are uppercase letters, otherwise it just returns the original character). The function is covered in this video if you want to learn more: kzbin.info/www/bejne/l4W2e3mlprmNqKs.
@LuSanFR Жыл бұрын
I got stuck on this in my 42 piscine final exam !
@barnikroy52442 жыл бұрын
Thank you for this playlist
@PortfolioCourses2 жыл бұрын
You're welcome Barnik! :-D
@justcurious1940 Жыл бұрын
Just a string a weird syndrome : _Bool is_Syndrome(char *string){ int length = strlen(string); int middle = length/2; for(int i = 0 ; i < middle ; i++){ if(string[i] != string[length-1-i]) return false; } return true; }
@comoyun8 ай бұрын
looks similar to mine: int isPalindrome(char word[]) { int status = 1, i = -1, length = 0; while (word[++length] != '\0'); while (i++ < length / 2) { if (word[i] != word[length - i - 1]) { status = 0; break; } } return status; }
@charlescox29011 ай бұрын
I'm surprised you didn't calculate len and then calculated middle using len and save a function call.
@michaelsotheraccount90704 ай бұрын
How come the if statement within the int main doesn't have {} am I cooked?
@omarmohamed-zo3dp7 ай бұрын
what would be the right code if i want the user to input any word to check
@umarahmed31132 жыл бұрын
So I got the right code for the palindrome if it’s something like aabaa but I don’t know what to do for something like aabaaa
@PortfolioCourses2 жыл бұрын
Did you try the code in this video? 🙂 It is available here and it should work: github.com/portfoliocourses/c-example-code/blob/main/palindrome.c
@umarahmed31132 жыл бұрын
@@PortfolioCourses im not sure if ittl work because im doing the leetcode on a site called codesignal. If you're able to do the coding for that task on there, can you make a tutorial?
@PortfolioCourses2 жыл бұрын
@@umarahmed3113 If it's C they're using, it should work on there too. 🙂 I'm not sure if I can do a tutorial on that, maybe one day I can cover some leetcode questions as it does seem to be popular with learners. 🙂
@KarouiFulla-m6e Жыл бұрын
Thank you so much
@PortfolioCourses Жыл бұрын
You’re very welcome! :-)
@glennpableo70302 жыл бұрын
it did not work for me
@PortfolioCourses2 жыл бұрын
Can you post your code in a comment here so we can check it out? The original code is found here, it should work: github.com/portfoliocourses/c-example-code/blob/main/palindrome.c
@yunusemrebayraktar5147 Жыл бұрын
int main() { int i, length, check; char string[20]; char reverse_string[20]; printf("Enter a string: "); scanf("%s", string); length = strlen(string); for(i=0;i
@PortfolioCourses Жыл бұрын
It looks good to me Yunus, thanks for sharing! :-)
@yunusemrebayraktar5147 Жыл бұрын
@@PortfolioCourses Thanks 😃
@PortfolioCourses Жыл бұрын
@@yunusemrebayraktar5147 🙂
@tanker1425 Жыл бұрын
nice
@PortfolioCourses Жыл бұрын
Thanks!
@sketchupguru2 жыл бұрын
Malayalam is a great palindrome word
@PortfolioCourses2 жыл бұрын
That’s a pretty long one, I’ll remember that thanks! :-)
@sketchupguru2 жыл бұрын
@@PortfolioCourses haha sure. YOu should look it up. It's a south Indian Language that I speak.