Hi I need help writing a program using recursion...
Write a program that will test if some string is a palindrome
Ask the user to enter a string
Pass the string to a Boolean function that uses recursion to determine if something is a palindrome or not. The function should return true if the string is a palindrome and false if the string is not a palindrome.
Main displays the result ( if the string is a palindrome or not
I started on the program already I'm just confused on using recursion with strings.