C 语言教程 C 语言实例 - 将字符串写入文件

brayden · 2022-04-04 12:48:48 · 热度: 14

将字符串写入文件。

实例

#include <stdio.h> #include <stdlib.h> /* exit() 函数 */ int main() { char sentence[1000]; FILE *fptr; fptr = fopen("codercto.txt", "w"); if(fptr == NULL) { printf("Error!"); exit(1); } printf("输入字符串:\n"); fgets(sentence, (sizeof sentence / sizeof sentence[0]), stdin); fprintf(fptr,"%s", sentence); fclose(fptr); return 0; }

输出结果为:

输入字符串:
codercto.com

打开文件 codercto.txt:

$ cat codercto.txt 
codercto.com

查看更多 C 语言实例

猜你喜欢:
暂无回复。
需要 登录 后方可回复, 如果你还没有账号请点击这里 注册