基本上我想获取用户的输入并将其标记化。例如我输入
4 <tab> 5 <tab> 6
我只想得到
4
5
6
但是我的一段代码不起作用;(
#include <stdio.h>
#include <string.h>
int main ()
{
char str;
scanf("%c",&str);
char *p = strtok(str, "\t");
while(p != NULL) {
printf("%s\n", p);
p = strtok(NULL, "\t");
}
}