gpt4 book ai didi

c - 使 readFile 成为 c 中的函数

转载 作者:行者123 更新时间:2023-11-30 19:14:25 24 4
gpt4 key购买 nike

我想使用 readFile 作为函数,但我不确定参数应填写什么:

void readFile(){
FILE *cfPtr = NULL;

char list[SIZEA][SIZEB];
int i = 0;
int j = 0;

cfPtr = fopen("unsorted.txt","r");
while (fgets(list[i], SIZEA, cfPtr)) {
list[i][strlen(list[i]) - 1] = '\0';
i++;
}

j = i;
for(i = 0; i < j; i++){
printf("%s\n", list[i]);
}
}

最佳答案

这完全取决于您的要求。但是,根据我的理解,您可以传递以下参数。

void readFile(const cahr * filename, const char *mode)

关于c - 使 readFile 成为 c 中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34117481/

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