gpt4 book ai didi

c - 如何将标准输入扫描到可变数量的流中

转载 作者:行者123 更新时间:2023-11-30 15:51:42 24 4
gpt4 key购买 nike

我想将 stdin 扫描到可变数量的字符数组中。像这样的事情:

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];
}
}

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

最佳答案

如果我正确理解您的问题,我认为您不需要复杂的 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

关于c - 如何将标准输入扫描到可变数量的流中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14924776/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com