Fgets (read a string from the file)Related functions: open, fread, fscanf, GETCHeader file include Define the function char * fgets (char * s, int size, file * stream );Function Description: fgets () is used to read characters from the file referred
Fread and fwrite Functions
Fread and fwrite Functions
1. Function Functions
Used to read and write a data block.
2. General call form
Fread (buffer, size, Count, FP );
Fwrite (buffer, size, Count, FP );
3. Description
(1) buffer: A pointer. For
Differences between fopen and open
In UNIX, C has two sets of reading and writing binary stream files: 1) fopen, fread, fwrite; 2) Open, read, writeHere is a brief introduction of their differences.1. The fopen series are standard C library
1. fopen
FILE * fopen (const char * path,const char * mode); function Description
The parameter path string contains the file path and filename you want to open, and the parameter mode string represents the flow pattern.
Mode has the following
Http://blog.sina.com.cn/s/blog_61437b3b0102v0bt.htmlhttp://blog.csdn.net/chenwk891/article/details/8776479 in c\c++, the file operations are implemented by the library function, mainly divided into two types of read and write operations, the
#include
#define SIZE 10
struct student
{
Char name[10];
int num;
int age;
Char addr[15];
}stu[size];
Save Data (fwrite)
void Save ()
{
FILE *FP;
fp = fopen ("Stu.dat", "WB");
if (fp==null)
{
printf ("File can not
Since I have recently used the C language to read and write files, I would like to summarize the following to facilitate later searching.
In c, file operations are implemented by database functions, mainly divided into read and write operations. The
reprinted from: http://blog.csdn.net/xidianzhimeng/article/details/235412891 fopenFunction prototype: File * fopen (const char * path,const char * mode); return value: When the file is opened successfully, the pointer to the stream will be returned.
Transferred from: http://blog.csdn.net/xiaofei0859/article/details/51145051Both are working on the file, so what's the difference between the two, and how do you choose when you use it?1. Differences
The fread is buffered and read without
Differences between open/read/write and fopen/fread/fwrite
Open: system call. The returned file descriptor, that is, the file handle, is the index of the file in the file description table.
Fopen: a c language library function that returns a
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.