可能重复:
为什么在写入字符串时会出现分段错误?
以下简单函数应将字符数组反转到位。
void reverse(char* str)
{
char* last = str;
// find end of the string
while(*last) {
++last;
}
// swap characters until the pointers meet in the middle
while(str < last)
{
--last;
char temp = *str;
*str = *last;
*last = temp;
++str;
}
}
int main()
{
char* a= "Hello";
reverse(a);
return 0;
}
代码编译。但它会引发有关访问冲突的运行时错误。根据调试器,罪魁祸首是以下行:
char temp = *str;
任何想法为什么会发生?