gpt4 book ai didi

c - 在eof之后从文件输入到C中的数组

转载 作者:太空宇宙 更新时间:2023-11-04 04:51:23 25 4
gpt4 key购买 nike

在我已经遍历文件以查看文件有多少行之后,我试图将文件中的所有信息放入一个数组中。如果我将文件的一行放入它似乎可以工作,但是,如果我在返回文件时将数组位置设置为文件行,然后打印数组,则数字会与它们应该的数字大不相同。

这是我的代码。

int main()
{

//Opens File

char fName[20];

// fName = getchar();

scanf( "%s", fName);

FILE *fpIn;

fpIn = fopen ( fName, "rt");
// fpIn = fopen( "test1.txt", "rt");

if ( fpIn == NULL)
{
printf( "Unable to open: ");
exit(99);
}

//Gets Lines

int lines=0;
char ch;

while((ch=fgetc(fpIn))!=EOF)
{
if (ch=='\n') { lines++; }

}

clearerr(fName *fpIn);
fclose(fpIn);
fopen(fName, "rt");

//Makes Array

int *pA;

pA = (int *)malloc(lines*sizeof(int));

//Fills Array

for (int i=0; i<lines; i++)
{
while ((ch=fgetc(fpIn))!='\n')
{
pA[i] = ch;
}
ch=fgetc(fpIn);
}

for (int i=0; i<lines; i++)
{
printf("%d\n", pA[i]);
}



return 0;
}

最佳答案

考虑这部分代码:

    while ((ch=fgetc(fpIn))!='\n')
{
pA[i] = ch;
}

i 在此循环期间不会更改,因此 pA[i] 会不断被每个新字符覆盖。您最终会得到 pA[i],其中包含该行的最后一个字符。

关于c - 在eof之后从文件输入到C中的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14674818/

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