C Program To Find Palindrome Using Functions
Posted on by admin
Check Palindrome C
# A recursive Python program to check whether # a given number is palindrome or not # A recursive function that check a strs.e # is palindrome or not. Def isPalRec(st, s, e): # If there is only one character if (s e): return True # If first and last characters do not match if (sts!= ste): return False # If there are more than two characters, # check if middle substring is also # palindrome or not.
Comments are closed.