Tagged Questions
The `feof` function is available as part of the C Standard Library and checks whether the end of a stream has been reached. Usually, when it is used, the code using it is wrong.
11
votes
2answers
729 views
In C, is “while( !feof( … ) )” always wrong?
I've started seeing while( !feof( f )) in a lot of posts lately, and I haven't found a good link to reference to explain why that is wrong. So I thought I'd take a stab at explaining it here.
5
votes
4answers
162 views
PHP's feof behavior versus C's
I come from a C and C++ background but also play with some web stuff. All us C folks (hopefully) know that calling feof on a FILE* before doing a read is an error. This is something that stings ...
3
votes
2answers
115 views
feof wrong loop in c
I use below code to read a char from file and replace it with another,
but I have an error.loop in going to end of file.
What is wrong?
I tested this code on linux (netbeans IDE) and it was correct ...
3
votes
5answers
1k views
feof() in C file handling
I am reading a binary file byte-by-byte,i need determine that whether or not eof has reached.
feof() doesn't works as "eof is set only when a read request for non-existent byte is made". So, I can ...
3
votes
3answers
350 views
Why is this C code buggy?
On another question, Jerry Coffin pointed out the following:
It's (probably) not really related to your question, but while (!feof(fileptr)){ is pretty much a guaranteed bug.
I figured I would ...
2
votes
4answers
204 views
feof() returning true when EOF is not reached
I'm trying to read from a file at a specific offset (simplified version):
typedef unsigned char u8;
FILE *data_fp = fopen("C:\\some_file.dat", "r");
fseek(data_fp, 0x004d0a68, SEEK_SET); // move ...
1
vote
4answers
394 views
C segmentation fault errors with feof() and fgetc()
Can anyone help me solve my dilemma? When I compile my program I get no errors or warnings. When I go to actually run the executable, though, I get a segmentation error. If I'm to understand ...
1
vote
2answers
441 views
How to use feof(FILE *f)?
I'm having a hard time with a do-while loop, that is supposed to stop
when we reach the end of the file. Here's the loop code:
do {
if (pcompanyRow[0] != '#' && pass == 1) {
...
0
votes
2answers
95 views
Paypal IPN Script, issue with feof and fgets
I've been having issues with my Paypal IPN listener script for a couple of days now. For those of you who are unfamiliar with the Paypal IPN system, basically Paypal sends your script with a message ...
0
votes
1answer
74 views
how use EOF stdin in C
I need to input coordinates into an array until EOF is encountered, but something is wrong in my code. I used ctrl+Z, ctrl+D
int main()
{
int x[1000],y[1000];
int n=0,nr=0,a,b,i;
...
0
votes
2answers
68 views
Is this an acceptable way to determine EOF while reading a file in PHP?
I am fairly new to PHP and just trying to convert something I did in C. The idiom for reading from a file in C that I was taught was:
while ((c = getchar()) != EOF) {
doSomethingWith(c);
}
...
0
votes
1answer
175 views
Problem with reading file…while (!feof(file)) leads to infinite loop!
void OpenFile() {
FILE *fp;
char buffer[1024];
int number;
fp=fopen("godess.txt","r");
if(fp==NULL){
printf("Error opening file!\n");
exit(0);
}
else {
...
0
votes
2answers
172 views
Duplicate last entry when reading a file using fread [closed]
Possible Duplicates:
Why is this C code buggy?
Problem with EOF when determine stream end
I'm trying to read a binary file in 4 byte chunks. However the first implementation (shown below) ...
0
votes
3answers
330 views
php - feof error
The file that I'm trying to read is a pgp-encrypted file. This is part of the process to decrypt it and I'm actually attempting to read the contents into a string so that I can then decrypt it. I'm ...