My path to C/C ++-011 lessons (Reading files)

Source: Internet
Author: User

Previous: http://www.bkjia.com/kf/201205/130088.html

Now let's talk about file operations and reading files in byte. It's actually very simple. I believe everyone will talk about them separately. Otherwise, everyone will not be in the mood to read long code.

 

[Cpp]
# Include <stdlib. h>
# Include <stdio. h>
 
Void readFile ()
{
FILE * file; // FILE pointer
Char c; // read characters
File = fopen ("c: \ test.txt", "r"); // open the file
If (NULL = file) // determines whether the file is successfully opened.
{
Printf ("can't open this file, make sure the file exist !!! \ N ");
Exit (1 );
}
Puts ("open file successful !!! ");
Puts ("read file now :");
 
C = fgetc (file );
While (c! = EOF) // The End of the file is EOF
{
Putchar (c );
C = fgetc (file );
}
Printf ("\ n ");
Fclose (file); // remember to close the file
}






From mzlqh's column

Related Article

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.