为什么用strtok时会有段错误呢?
下面是我的程序,很简单,可是不知道为什么会有段错误,我是在Linux下gcc编译的:#include<string.h>#include<stdio.h>main(){c...
下面是我的程序,很简单,可是不知道为什么会有段错误,我是在Linux下gcc编译的:
#include <string.h>
#include <stdio.h>
main()
{
char *s="Golden Global View";
char *d=" ";
char *p;
p=strtok(s,d);
while(p)
{
printf("%s\n",s);
strtok(NULL,d);
}
return 0;
}
我知道了,原因是应该把 char *s="Golden Global View";改为 char s〔〕="Golden Global View"; 展开
#include <string.h>
#include <stdio.h>
main()
{
char *s="Golden Global View";
char *d=" ";
char *p;
p=strtok(s,d);
while(p)
{
printf("%s\n",s);
strtok(NULL,d);
}
return 0;
}
我知道了,原因是应该把 char *s="Golden Global View";改为 char s〔〕="Golden Global View"; 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询