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 C
  The Code in Python 3

Comments

Popular posts from this blog

Bubble Sort ( C & Python 3)

Comparison Logical and Bitwise Operator ( Java Part - 4 )

Something about me