About feof () bugs

Source: Internet
Author: User

A few days ago to attend a training, listen to people say use feof () as a sign of the end of the document to be careful. At that time I did not agree, feof, this function I used Ah, did not find any bugs.

But after coming back to write a program a try, there is a bug.

I tried to copy a file using feof as a flag to end the decision file:

while (!feof (FP_RD))

{

Char t = fgetc (FP_RD);

FPUTC (t, FP_WR);

}

But when I open the copied file, the end of the send out a 0xff more.

Check the Internet:

C language feof function is read the contents of the above to determine whether the file is over, and from the above program can be seen, I was first judged and then read the file, it will inevitably lead to write a file when more than a section. Correct it to the following form:

Char t = fgetc (FP_RD);

while (!feof (FP_RD))

{

FPUTC (t, FP_WR);

t = fgetc (FP_RD);

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.