尝试将扫描的字符串拆分为我的数组“line”,其中新字符串被空格分割,并且每个拆分字符串都应该进入我的数组“scoops”,这样我就可以访问任何拆分字符串索引了后
但是我无法让它完全发挥作用。当我尝试在while循环中打印scoops数组时,由于某种原因,j索引保持为0但正确打印拆分字符串。
当我尝试在while循环之外看到所有新字符串时,它只打印索引0的第一个字符串。之后崩溃。
(我尝试搜索类似的帖子并尝试了这些解决方案,但仍然出现同样的问题)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(){
int i,c,j;
char* order;
char line[256]; //max order is 196 chars (19 quadruples + scoop)
char* scoops[19]; //max 19 different strings from strtok
// get number of cases
scanf("%d",&c);
// do number of cases
for(i=0;i<c;i++){
scanf("%s", &line); //temp hold for long string of qualifiers
order = strtok(line, " "); //separate all the qualifiers 1 per line
j = 0;
while(order != NULL){
scoops[j] = order;
printf("scoops[%d] = %s\n",j,scoops[j]);
order = strtok(NULL, " ");
j++;
}
// checking to see if array is being correctly stored
//for(i=0;i<19;i++)
//printf("scoops[%d] = %s\n",i,scoops[i]);
}
return 0;
}
答案 0 :(得分:1)
scanf("%s", &line); //temp hold for long string of qualifiers
不会读取任何空格字符。如果您想阅读一行文字,包括空格字符,则需要使用fgets
。
fgets(line, sizeof(line), stdin);
但是,要实现此功能,您需要添加一些代码,忽略调用后输入流中剩余的剩余行:
scanf("%d",&c);
如:
// Ignore the rest of the line.
char ic;
while ( (ic = getc(stdin)) != EOF && ic != '\n');