Question: Writing a recurisve function for palidromes that will return true if an input string S of length n >= 0 is a palidrome and false

Writing a recurisve function for palidromes that will return true if an input string S of length n >= 0 is a palidrome and false otherwise.an empty string will also be a palidrome and a string only with a single character is also a palidrome. Also to note cannot use any libraries for this.

The language is also c++

bool is_pal(const char *S, unsigned int n); 

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!