我正在使用AIX。 strtok有几个分段错误的帖子,但我找不到任何帮助我。
我正在编写一个c程序,我想在程序中读取一个文件然后对这一行进行排序(我只需要在第二行末尾的分钟和秒数)。
这是我代码中的代码段:
FILE *timeFile;
int x, timeElapsed;
char line[1000], *temp;
int main()
{
x = 0;
timeFile= fopen("time.txt", "r");
if(timeFile==NULL)
{
printf("\nerror opening file time.txt\n");
printf("\nPlease update system time manually\n");
return 1;//error
}
while( x<10 && fgets(line, sizeof(line), timeFile)!= NULL)
{
if( x==1 )//we need data from the second line
{
temp = strtok(line, " ");
printf("\nline: %s",line);//the Output here is as expected 'line: real'
printf("\ntemp: %s",temp);//the error occurs here at temp
break;
}
x++;
}
}
我想读的文件里面有这个:
real 0m1.25s
user 0m0.09s
sys 0m0.02s
第一行是空白(我认为只返回一个字符)和'真正的0m1.25s '是第二行。我想只阅读第二行。当我尝试读取temp变量时发生错误。
有趣的是,我在另一个程序中使用了几乎相同的代码来完成相同的工作,并且它有效。唯一的区别是在上一个项目的输入文件中没有空行或制表符。所以我很困惑请帮忙。
PS:我使用的是德语键盘,因此它可以自行处理单词,对不起。