[CODE]working on it 3 days and I'm still having trouble heres the code i have but it won't return anything at all . please write the code that i should use out please.


bool palindrome(const char s[])
{
bool pal=true; // assume s is a palindrome until mismatch is found
int start=0;

int end=strlen(s);



while(start=0; start!=end;++start;--end
{
bool pal=false;

if(start!==s[])
{
return false;
}

}

return true;
}