[求助]大家看看错在了那里?
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
char *s="Golden Global View";
char *d=" ";
char *p;
p = strtok(s, d);
while(p)
{
printf("%s\n",s);
p = strtok(NULL, d);
}
getchar();
return 0;
}