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];
私はdev c ++を使用しています。文字列「文」の最初の文字を指すようにポインター「開始」を初期化しようとしていますが、「代入はキャストなしでポインターから整数を作成します」というエラーが表示され続けます。「*sentence」は、メインでユーザーが入力した文字列を指します。ispalindrome は、私が書いている関数です。main に入力された文が NULL の場合、0 を返すと仮定します。