在C语言中,`fwrite` 函数用于将数据从内存写入文件流。如果你想要替换 `fwrite`,你可以考虑以下几种替代方案:
1. 使用 `fprintf` 和 `fwrite` 的组合:
如果你需要写入格式化的数据,可以使用 `fprintf` 将数据格式化成字符串,然后再使用 `fwrite` 将字符串写入文件。
```c
include
int main() {
FILE fp = fopen("output.txt", "wb");
if (fp == NULL) {
perror("Error opening file");
return 1;