int fputc(int character, FILE *stream);
#include <stdio.h> int main() { FILE *file = fopen("output.txt", "w"); if (file == NULL) { printf("无法打开文件!\n"); return 1; } for (char ch = 'A'; ch <= 'Z'; ch++) { if (fputc(ch, file) == EOF) { printf("写入失败!\n"); fclose(file); return 1; } } printf("字母写入成功!\n"); fclose(file); return 0; }示例中,首先尝试打开名为 "output.txt" 的文件以写入访问,然后使用 fputc() 函数循环地将字母 'A' 到 'Z' 写入文件。如果在任何时候写入失败,会打印一个错误消息。
本文链接:http://task.lmcjl.com/news/6650.html