#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[]) {
char *str = "This is a string!";
int therealthing = sizeof(str[0]) * 4;
memset(str, 'b', therealthing);
printf("%s\n", str);
return 0;
}
此代码会导致段错误,任何想法为什么? 我已经尝试将它作为内存地址和指针传递。
答案 0 :(得分:2)
这是一个字符串文字。这是不可改变的。无法改变。
char *str = "This is a string!";
您正尝试使用memset进行更改。你可以使用一个字符数组
char str[] = "This is a string!";
或
char * str = malloc(sizeof(char) * (strlen("This is a string!") + 1));
strcpy(str, "This is a string!");
答案 1 :(得分:1)
您无法修改字符串文字。它将调用未定义的行为 试试这个
char str[] = "This is a string!";