10 marks Write a RECURSIVE function which when passed a string s will
return true if s is a palindrome and otherwise false. A palindrome is a string
which is the same if reversed eg radar, rotor, noon, racecar.
past paper question which im doing at the moment as got be stuck?
bool isPalindrome (string s)
{
if (s.empty())
{
return true;
}
}
im really unsre?