fwrite
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <stdio.h> 中定义
|
||
count
的对象写入到输出流buffer
在给定的数组stream
。对象是不以任何方式解释. 原文:
Writes
count
of objects in the given array buffer
to the output stream stream
. Objects are not interpreted in any way. [编辑] 参数
buffer | - | 要写入数组中的第一个对象的对象的指针
原文: pointer to the first object object in the array to be written |
size | - | 每个对象的大小
|
count | - | 要写入的对象的数量
原文: the number of the objects to be written |
[编辑] 返回值
成功写入的对象的数量
原文:
number of objects written successfully
[编辑] 另请参阅
打印格式化输出到stdout,文件流或缓冲区 原文: prints formatted output to stdout, a file stream or a buffer (函数) | |
将一个字符串写入一个文件流 原文: writes a character string to a file stream (函数) | |
从文件读取 (函数) | |
C++ documentation for fwrite
|