C++ Programming/Code/Standard C Library/Functions/fwrite

From Wikibooks, open books for an open world
Jump to navigation Jump to search

fwrite[edit | edit source]

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.

Related topics
fflush - fgetc - fopen - fputc - fread - fscanf - getc