首先,我想告诉大家,我还没有“深入研究”sgets()函数。下面是代码:
#include <iostream>
#include <stdio.h>
#pragma warning(disable:4996)
int main(){
FILE* file;
int count = 1;
char buf[256];
if (file = fopen("file.txt", "r"))
while (!feof(file))
{
fgets(buf, 256, file);
printf("%d string: %s", count, buf);
++count;
}
fclose(file);
return 0;
}
这是我在file.txt中写的:
I
was
born
here
.
cmd中的输出为:
1 string: I
2 string: was
3 string: born
4 string: here
5 string: .
6 string: .
我怎么能拒绝5串的加倍呢?
发布于 2015-03-10 17:20:48
您可以进行以下更改,以查看代码是否按预期工作
while (fgets(buf, 256, file) != NULL)
{
printf("%d string: %s", count, buf);
++count;
}
如前所述,不要像在代码中那样使用feof()
。
https://stackoverflow.com/questions/28970050
复制