No video

Check If A String Is A Palindrome | C Programming Example

  Рет қаралды 36,190

Portfolio Courses

Portfolio Courses

3 жыл бұрын

An example of how to check whether a string is a palindrome using C. Source code: github.com/portfoliocourses/c.... Check out www.portfoliocourses.com to build a portfolio that will impress employers!

Пікірлер: 41
@PortfolioCourses
@PortfolioCourses Жыл бұрын
Check out this video too on using recursion to check if a string is a palindrome! 🙂 kzbin.info/www/bejne/sILFiWmobbKUna8.
@victor.san3
@victor.san3 2 жыл бұрын
Your code is really elegant and straightforward it makes so much easier to understand. Also, great pedagogical skills there. Thanks a lot!
@PortfolioCourses
@PortfolioCourses 2 жыл бұрын
Thank you so much for the positive feedback Victor, and you're very welcome! 😀
@pratikthapa6218
@pratikthapa6218 2 жыл бұрын
this was the way i actually wanted to do it thanks mate upload more of this you are a clever man
@PortfolioCourses
@PortfolioCourses 2 жыл бұрын
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
@nicholas_sergakis
@nicholas_sergakis Жыл бұрын
Perfectly explained! Thank you sir!
@PortfolioCourses
@PortfolioCourses Жыл бұрын
You're welcome Nicholas, I'm glad that you enjoyed the explanation! :-)
@barnikroy5244
@barnikroy5244 2 жыл бұрын
Thank you for this playlist
@PortfolioCourses
@PortfolioCourses 2 жыл бұрын
You're welcome Barnik! :-D
@user-it9cy4qu3f
@user-it9cy4qu3f 9 ай бұрын
Thank you so much
@PortfolioCourses
@PortfolioCourses 9 ай бұрын
You’re very welcome! :-)
@omarmohamed-zo3dp
@omarmohamed-zo3dp Ай бұрын
what would be the right code if i want the user to input any word to check
@justcurious1940
@justcurious1940 7 ай бұрын
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; }
@comoyun
@comoyun 2 ай бұрын
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; }
@EuaggelosSP
@EuaggelosSP Жыл бұрын
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.
@PortfolioCourses
@PortfolioCourses Жыл бұрын
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.
@charlescox290
@charlescox290 5 ай бұрын
I'm surprised you didn't calculate len and then calculated middle using len and save a function call.
@pogCibi
@pogCibi 6 ай бұрын
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
@PortfolioCourses 6 ай бұрын
The length returned by strlen() does not count the null terminator, so that’s why it works out correctly length-wise.
@pogCibi
@pogCibi 6 ай бұрын
@@PortfolioCourses Thank you!
@tanker1425
@tanker1425 7 ай бұрын
nice
@PortfolioCourses
@PortfolioCourses 6 ай бұрын
Thanks!
@umarahmed3113
@umarahmed3113 2 жыл бұрын
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
@PortfolioCourses
@PortfolioCourses 2 жыл бұрын
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
@umarahmed3113
@umarahmed3113 2 жыл бұрын
@@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?
@PortfolioCourses
@PortfolioCourses 2 жыл бұрын
@@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. 🙂
@glennpableo7030
@glennpableo7030 2 жыл бұрын
it did not work for me
@PortfolioCourses
@PortfolioCourses 2 жыл бұрын
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
@DLikeDick
@DLikeDick 6 ай бұрын
I got stuck on this in my 42 piscine final exam !
@SketchupGuru
@SketchupGuru Жыл бұрын
Malayalam is a great palindrome word
@PortfolioCourses
@PortfolioCourses Жыл бұрын
That’s a pretty long one, I’ll remember that thanks! :-)
@SketchupGuru
@SketchupGuru Жыл бұрын
@@PortfolioCourses haha sure. YOu should look it up. It's a south Indian Language that I speak.
@yunusemrebayraktar5147
@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
@PortfolioCourses Жыл бұрын
It looks good to me Yunus, thanks for sharing! :-)
@yunusemrebayraktar5147
@yunusemrebayraktar5147 Жыл бұрын
@@PortfolioCourses Thanks 😃
@PortfolioCourses
@PortfolioCourses Жыл бұрын
@@yunusemrebayraktar5147 🙂
@phanindraslvs7469
@phanindraslvs7469 Жыл бұрын
👍🏼👍🏼
@PortfolioCourses
@PortfolioCourses Жыл бұрын
Thanks Phanindra! :-)
@ArjunA-ln3ov
@ArjunA-ln3ov 3 ай бұрын
/0
@tanker1425
@tanker1425 7 ай бұрын
nice
@PortfolioCourses
@PortfolioCourses 6 ай бұрын
Thanks!
Sum the Values in an Array | C Programming Example
7:17
Portfolio Courses
Рет қаралды 25 М.
String In Char Array VS. Pointer To String Literal | C Programming Tutorial
9:58
Nastya and SeanDoesMagic
00:16
Nastya
Рет қаралды 45 МЛН
EVOLUTION OF ICE CREAM 😱 #shorts
00:11
Savage Vlogs
Рет қаралды 13 МЛН
Double Stacked Pizza @Lionfield @ChefRush
00:33
albert_cancook
Рет қаралды 123 МЛН
Я обещал подарить ему самокат!
01:00
Vlad Samokatchik
Рет қаралды 9 МЛН
Check whether a Number is Palindrome or Not: C Program
5:24
Technotip
Рет қаралды 21 М.
Check If A String Is A Palindrome | C++ Example
11:18
Portfolio Courses
Рет қаралды 30 М.
31 nooby C++ habits you need to ditch
16:18
mCoding
Рет қаралды 758 М.
C_69 C Program to Reverse a String | with strrev() and without strrev() function
24:51
New AI ROBOT with 3 Brains SHOCKED Experts!
9:16
AI Revolution
Рет қаралды 13 М.
C Program to check whether a string is palindrome or not
22:29
MySirG.com
Рет қаралды 190 М.
The size of your variables matters.
11:03
Core Dumped
Рет қаралды 107 М.
Nastya and SeanDoesMagic
00:16
Nastya
Рет қаралды 45 МЛН