请问这个程序有什么地方不对
/*从一个字符数组中提取空白字符分割的标记并把它们打印出来(每行一个)。*/
#include<stdio.h>
#include<string.h>
void print_tokens(char *line)
{
static char whitespace[]="\t\f\r\v\n";
char *token;
for(token=strtok(line,whitespace);
token !=NULL;
token=strtok(NULL,whitespace))
printf("Next token is %s\n",token);
}
void main()
{
char *line;
char *token;
char whitespace[]="\t\f\r\v\n";
print_tokens(&line);
return 0;
}