<stdio.h>
头文件中。int fputs(const char *str, FILE *stream);
#include <stdio.h> int main() { FILE *file = fopen("output.txt", "w"); if (file == NULL) { printf("无法打开文件!\n"); return 1; } const char *str = "http://task.lmcjl.com"; if (fputs(str, file) == EOF) { printf("写入失败!\n"); fclose(file); return 1; } printf("字符串写入成功!\n"); fclose(file); return 0; }在这个示例中,首先尝试打开名为 "output.txt" 的文件以写入访问,然后使用 fputs() 将字符串 "http://task.lmcjl.com" 写入文件。
本文链接:http://task.lmcjl.com/news/15860.html