Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8043269
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T04:50:59+00:00 2026-06-05T04:50:59+00:00

I been assigned this exercise at college, but I don’t know how to implement

  • 0

I been assigned this exercise at college, but I don’t know how to implement the recursion structure ( ” ??? ” in the code ). In the if-cycle I should match the first character in the array with the last and apply the recursion in order to reach the central character, but I don’t know how to setup the code. The main function code compiles perfectly.

#include <iostream>

using namespace std;

const int DIM = 8;

bool is_palindrome (char* first, char* last)
{
    if (first == last)
    {
        ???
    }
    else
     return false;
}

int main()
{
    char a[DIM] = {'i','n','g','e','g','n','i','\0'};
    char *first = &a[DIM] + 1;
    char *last = &a[DIM] -1;

    if (is_palindrome(first, last))
        cout << " the char array is palindrome ";
    else
            cout << " the char array is not palindrome ";

    return 0;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T04:51:00+00:00Added an answer on June 5, 2026 at 4:51 am
    using namespace std;
    
    const int DIM = 8;
    
    bool is_palindrome ( char* first , char* last )
    {
        if ( *first == '\0' )
        {
            return false;
        }
        else if ( first >= last )
        {
            return true;
        }
        else if ( *first == *last )
        {
            return is_palindrome(first + 1, last - 1);
        }
        else
        {
            return false;
        }
    }
    
    int main ()
    {
        char a[DIM] = {'i','n','g','e','g','n','i','\0'};
        char *first = a;
        char *last = &a[DIM] - 2;
    
        if ( is_palindrome ( first , last ) )
        {
            cout << " the char array is palindrome ";
        }
        else
        {
            cout << " the char array is not palindrome ";
        }
    
        return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So you know off the bat, this is a project I've been assigned. I'm
So, I've been racking my brain over this (should-be) simple exercise to make the
Okay guys, basically the problem I'm having is this. I've been assigned to write
I have been assigned to work on some legacy C++ code in MFC. One
Fairly new to socket programming, but I've been assigned with a whopper of project.
This current project I've been assigned uses the Version 3.1 levels of: Microsoft.Practices.EnterpriseLibrary.Common; Microsoft.Practices.EnterpriseLibrary.Data;
I've been assigned to implement a video on-demand service for a local university. Different
[I have this working, but I don't understand why my fix to make it
I've been assigned to do further development on a website which is, at this
I've been assigned to document some new code, and I can't figure out how

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.