Writes a specified number of characters to a stream.
#include <stdio.h> size_t fwrite (const void *buffer, size_t size, size_t count, FILE *stream);
buffer
size
count
stream
The file pointer associated with stream(if there is one) is incremented by the number of bytes actually written.
If you open stream in text mode, each <CR> is replaced with a <CR><LF> pair. The replacement has no effect on the return value.
Versions | Defined in | Include | Link to |
---|---|---|---|
INtime 3.0 | intime/rt/include/stdio.h | stdio.h | clib.lib |