Link to home
Start Free TrialLog in
Avatar of dinakarsoupaty
dinakarsoupaty

asked on

c program code for paliandrome using recursive

i want a c program code for checking whether the string is paliandrome or not using recursive method.i m a begginer in language environment and dont hav any idea of how to start
Avatar of dinakarsoupaty
dinakarsoupaty

ASKER

i want a answer quickly
ASKER CERTIFIED SOLUTION
Avatar of Kent Olsen
Kent Olsen
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi dinakarsoupaty,

Here's a few more hints but you must do the code yourself.

1. A zero-character word is a palindrome.
2. A one-character word is a palindrome.
3. A n-character word is a palindrome if the two end characters are the same and the word without those two characters is a palindrome.

Thats essentially what Kent is saying.

You wll have to accept that this work wont be done for you. I would suggest you post some code and let us help you fix it.

Paul
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial