gpt4 book ai didi

c - 预期为 ‘const char * __restrict__’,但参数的类型为 ‘int’,带有 strtok 函数

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

char *local_buffer, *buff;
fgets(buff, 1024, fp);

local_buffer=strtok(buff,'\t'); //Error is coming with this line

我已经尝试传递一个字符变量而不是'\t',但它仍然显示相同的错误。

最佳答案

您要为第二个参数传递一个字符常量(相当于一个整数),而不是一个字符串。

local_buffer=strtok(buff,'\t');

你想要的是:

local_buffer=strtok(buff,"\t");

关于c - 预期为 ‘const char * __restrict__’,但参数的类型为 ‘int’,带有 strtok 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18990299/

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