int isPurePalindrome(const char *sentence){
int i;
if (sentence="")
return 0;
char *begin; char *end; i=strlen(sentence);//i is now the length of sentence string
*begin= &sentence(0);
*end=&sentence[i-1];
我正在使用开发 C++。我试图将指针“begin”初始化为指向字符串“sentence”中的第一个字符,但它一直给我一个错误,即“赋值从指针生成整数而不进行强制转换”。“*sentence”指向用户在main中输入的字符串。ispalindrome 是我正在编写的函数。如果在 main 中输入的句子是 NULL,它假设返回 0。