0

我想扫描stdin到可变数量的 char 数组。像这样的东西:

char words1[num][100];    //num passed as command line argument
i = 0;
for (i = 0; i < num; ++i)
{
    While (fscanf(stdin, "%s %s %s ...", words[i], words[i + 1], word[i + 2] ...) != EOF)
    {
         fprintf(outFileStream, "%s", words[i];
    }
}

目标是拆分stdinnum多个文件流,以供多个进程对文件进行排序。我想也许vfscanf会有所帮助,但您仍然需要知道要发送多少个格式说明符。我想我可以 for 循环并与 a 一起strcat(format, " %s")使用?有人可以举个例子吗?vfscanfva_list

4

1 回答 1

1

如果我正确理解您的问题,我认为您不需要复杂的fscanf格式,而只需一次读取一个字符串。也就是说,您可以使用以下内容:

#include <stdio.h>

int main (int argc, char** argv) {
    int num = atoi(argv[1]);
    char words[num][100];
    int i = 0;
    while (fscanf(stdin,"%s",words[i]) > 0) { 
       fprintf(stdout,"Stream %d: %s\n",i,words[i]);
       i = (i + 1 ) % num;
    }
}

给定一个输入文件texta.txt如下:

a
b
c
d
e
f
g
h
i
j
k
l
m
n

...然后上面的程序将给出:

$ ./nstream 4 <texta.txt
Stream 0: a
Stream 1: b
Stream 2: c
Stream 3: d
Stream 0: e
Stream 1: f
Stream 2: g
Stream 3: h
Stream 0: i
Stream 1: j
Stream 2: k
Stream 3: l
Stream 0: m
Stream 1: n
于 2013-02-17T21:22:41.153 回答