gpt4 book ai didi

c - 如何将文件(C 语言)加载到全局定义的字符数组中?

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

我真的不知道从哪里开始。 I/O 并不是我所擅长的。我想声明一个全局字符数组,其中包含文本文件中的信息。该数组的大小需要由 inut 文件确定。这是我迄今为止唯一的想法:

    #include<stdio.h>
int N;
char c_array[N];
int main(){
f = fopen("file.txt","r");
File *infile;
c_array[N] = fscanf(f) //Yeah I dont get how fscanf works either
.........;
}

大小将由文件的大小决定(假设它的长度不会太长)。该文件(名为 file.txt)将包含类似以下内容:

    A 5 4
4 C 3
5 4 4

所以在这种情况下,我想要 c_array[N] = {A,5,4,4,c,3,5,4,4},其中 N = 9。

最佳答案

这样的事情应该有效:

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>

char *array;

int main()
{
FILE* file;
int sz,i=0;
char c;
file=fopen("file.txt","r");

//get the file size in bytes
fseek(file,0,SEEK_END);
sz=ftell(file);
//allocate the array based on the file size;
array=(char*)malloc(sz);
rewind(file);//rewind the file and start reading from the beginning

while(c!=EOF)
{
c=getc(file);
if(isalnum(c)) //if the character is number or letter save it in the array
{
array[i]=c;
i++;
}
}
fclose(file);
for(int j=0; j<i; j++)
{
printf("%c",array[j]);
}
free(array);
return 0;
}

关于c - 如何将文件(C 语言)加载到全局定义的字符数组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20012309/

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