hi all!
i need to write a recursive function that checks whether a given
sentence is a palindrome by using this function:
int isPalindrome(char word[]);
i need to define a helper recursive function with extra parameters, and write isPalindrome as a wrapper function.
the helper function is : int isPalindromeHelper(char word[], int size);
note : i should not use global or static variables.
actually my problam is haw to use the helper function .