C++でnullで終了する文字列を元に戻そうとしています。私は以下のコードを書きました:
//Implement a function to reverse a null terminated string
#include<iostream>
#include<cstdlib>
using namespace std;
void reverseString(char *str)
{
int length=0;
char *end = str;
while(*end != '\0')
{
length++;
end++;
}
cout<<"length : "<<length<<endl;
end--;
while(str < end)
{
char temp = *str;
*str++ = *end;
*end-- = temp;
}
}
int main(void)
{
char *str = "hello world";
reverseString(str);
cout<<"Reversed string : "<<str<<endl;
}
ただし、このC ++プログラムを実行すると、ステートメントのwhileループ内で書き込みアクセス違反が発生します。*str = *end ;
これはかなり単純ですが、このエラーが発生する正確な理由を理解できないようです。
エラーを特定するのを手伝ってもらえますか?