hi everybody..i need to define two functions that test for word Palindromes..
1- void bool isPalindromeUsi ngIteration(str ing ) that takes a string as a paremeter and tests if it is a Palindrome using a loop structure.
2- bool isPalindromeUsi ng Recursion(strin g) that takes a string as paremeter and tests if it is a Palindrome using a recursion.
i need to explore the standard c++ library string and cctype to be able to define these two functions..
i want to use arrays in the progarm.. can u please help me..
1- void bool isPalindromeUsi ngIteration(str ing ) that takes a string as a paremeter and tests if it is a Palindrome using a loop structure.
2- bool isPalindromeUsi ng Recursion(strin g) that takes a string as paremeter and tests if it is a Palindrome using a recursion.
i need to explore the standard c++ library string and cctype to be able to define these two functions..
i want to use arrays in the progarm.. can u please help me..
Comment