C++ Programming/Code/Standard C Library/Functions/fwrite
< C++ Programming < Code < Standard C Library < Functionsfwrite
Syntax |
#include <cstdio>
int fwrite( const void *buffer, size_t size, size_t count, FILE *stream );
|
The fwrite() function writes, from the array buffer, count objects of size size to stream. The return value is the number of objects written.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.