我一直收到此错误,我不确定它是如何适用于我的程序的。这是我的计划。
#include<stdio.h>
#include<stdlib.h>
int nextword(char *str);
void main(void)
{
char *str = "Hello! Today is a beautiful day!!\t\n";
int i = nextword(str);
while(i != -1)
{
printf("%s\n",&(str[i]));
i = nextword(NULL);
}
}
int nextword(char *str)
{
// create two static variables - these stay around across calls
static char *s;
static int nextindex;
int thisindex;
// reset the static variables
if (str != NULL)
{
s = str;
thisindex = 0;
// TODO: advance this index past any leading spaces
while (s[thisindex]=='\n' || s[thisindex]=='\t' || s[thisindex]==' ' )
thisindex++;
}
else
{
// set the return value to be the nextindex
thisindex = nextindex;
}
// if we aren't done with the string...
if (thisindex != -1)
{
nextindex = thisindex;
// TODO: two things
// 1: place a '\0' after the current word
// 2: advance nextindex to the beginning
// of the next word
while (s[nextindex] != ' ' || s[nextindex] != '\n' || s[nextindex] != '\t')
{
if ( s[nextindex] == '\0')
return -1;
else
{
nextindex++;
if (s[nextindex]==' '||s[nextindex]=='\n'||s[nextindex]=='\t')
str[nextindex]='\0';
}
}
}
return thisindex;
}
我的程序应该有一个输出到
的控制台Hello!
Today
is
a
beautiful
day!!
答案 0 :(得分:5)
您正在尝试更改String literal。这会导致未定义的行为,例如段错误。
str[nextindex]='\0'
在此处,str
是nextWord()
的参数,即:
char *str = "Hello! Today is a beautiful day!!\t\n";
int i = nextword(str);
由于"Hello! Today is a beautiful day!!\t\n"
是一个字符串文字 - 改变它是udnefined行为,在你的情况下(幸运的是)它导致了一个seg-fault。
答案 1 :(得分:4)
您应该编译并启用所有警告和调试信息(如果在Linux上使用 GCC ,这意味着使用gcc -Wall -g
进行编译)。
然后你应该学习如何使用调试器(例如Linux上的gdb
)以及可能的{@ 3}}之类的泄漏检测器
如果您取消引用某些“坏”指针,可能会发生valgrind,例如一个NULL或一个未初始化的。如果你写入只读段也可能发生(你可能会覆盖一个字符串文字,它被放入只读 - 所谓的.text
或.rodata
- 段)
考虑编译器的每个警告(并启用它们)并使用调试器是任何C程序员的基本技能。
答案 2 :(得分:0)
请给nextindex
一个初始值