#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("%sn", str);
return 0;
}
这段代码会导致段错误,有什么想法吗?我已经尝试将其作为内存地址和指针传递。
这是一个
字符串文字。它是不可变的。无法更改。
char *str = "This is a string!";
您正在尝试使用内存集更改它。您可以使用字符数组
char str[] = "This is a string!";
或
char * str = malloc(sizeof(char) * (strlen("This is a string!") + 1));
strcpy(str, "This is a string!");
不能修改字符串文本。它将调用未定义的行为。
试试这个
char str[] = "This is a string!";