How to check a palindrome String
Palindrome String Checker
Palindrome string is a word whose's reverse remains the same as the initial word. For example lets consider the world "mom", it's inverse is also "mom", such words are known as palindrome words. Words like "mummy" when inversed become "ymmum" such words are non-palindrome words. So let us make a program which would check if a number is palindrome or not.
Let's do this in C first
Palindrome Number checker in C ( Without Using any String Library Functions )
Then we might do it even in python
The code in CPalindrome string is a word whose's reverse remains the same as the initial word. For example lets consider the world "mom", it's inverse is also "mom", such words are known as palindrome words. Words like "mummy" when inversed become "ymmum" such words are non-palindrome words. So let us make a program which would check if a number is palindrome or not.
Let's do this in C first
Palindrome Number checker in C ( Without Using any String Library Functions )
Then we might do it even in python
The Code in Python 3
Comments
Post a Comment