本文介绍了为什么我得到一个分段错误,当我尝试修改字符串常量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
I expect the output of this program to be: ibjgsjfoetBut i am getting a segmentation fault.
#include <stdio.h>
int main()
{
char *p="haifriends",*p1;
p1=p;
while(*p!='\0')
++*p++;
printf("%s %s",p,p1);
return 0;
}
解决方案
You are trying to modify a string literal:
char *p="haifriends";
++*p;
Usually, string literals are allocated in non writable memory, hence the segfault.
这篇关于为什么我得到一个分段错误,当我尝试修改字符串常量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!