50.0k views
0 votes
The ____________________ function incrementally writes data to a text file and returns the number of bytes written to the file.

User Funkwecker
by
5.9k points

1 Answer

2 votes

Answer:

fwrite() function

Step-by-step explanation:

fwrite() function is a C programming function used to write to an open file. It writes the contents of string to the file stream pointed to by handle. It consists of Parameters such as handle, string and length and returns the number of bytes written, or FALSE on failure

User Zankrut Parmar
by
4.8k points