获取您的
自己的
网站
×
更改方向
更改主题,暗/亮
前往 Spaces
#include <stdio.h> int main() { FILE *fptr; // Open a file in writing mode fptr = fopen("filename.txt", "w"); // Write some text to the file fprintf(fptr, "Hello World!"); // Close the file fclose(fptr); return 0; }
写入文件示例
这只是一个示例,展示了您打开刚刚写入的文件时的样子