#include <iostream.h>//这个程序要把一个字符串里的单词提取并输出来!
char*nextword(char**pp);
void main()
{
char s[]="what is you name?";
char*ps=s;
do
cout<<nextword(&ps)<<endl;
while(*ps);
}
char*nextword(char**pp)
{
static char word[81];//不明白如果去掉static后便乱码显示?
//为什么这里的 char word[81]定义为"静态"的局部变量才能正确显示呢
while(**pp==' ')
(*pp)++;
char*pw=word;
while(**pp&&**pp!=' ')
*pw++=*(*pp)++;//*(*pp)++;如何看待呢?
*pw='\0';
return word;
}
大家指点指点