|
fwritefunction
<cstdio>
size_t fwrite ( const void * ptr, size_t size, size_t count, FILE * stream ); Write block of data to stream Writes an array of count elements, each one with a size of size bytes, from the block of memory pointed by ptr to the current position in the stream.The postion indicator of the stream is advanced by the total number of bytes written. The total amount of bytes written is (size * count). Parameters
Return ValueThe total number of elements successfully written is returned as a size_t object, which is an integral data type.If this number differs from the count parameter, it indicates an error. Example
A file called myfile.bin is created and the content of the buffer is stored into it. For simplicity, the buffer contains char elements but it can contain any other type. sizeof(buffer) is the length of the array in bytes (in this case it is three, because the array has three elements of one byte each). See also
|