gpt4 book ai didi

c - 总线错误 :10 with strtok in C

转载 作者:太空宇宙 更新时间:2023-11-04 01:00:41 24 4
gpt4 key购买 nike

这是我的代码,当我运行代码时,总是出现总线错误 10:

void print_tokens(char *line)
{
static char whitespace[] = " \t\f\r\v\n";
char *token;

for(token = strtok(line, whitespace);
token != NULL;
token = strtok(NULL, whitespace))
printf("Next token is %s\n", token);
}

int main(void)
{
char *line = "test test test";
print_tokens(line);
return 0;
}

请帮帮我!

最佳答案

您不能修改字符串常量。以这种方式定义 line:

char line[] = "test test test";

关于c - 总线错误 :10 with strtok in C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41021149/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com