C语言:字符串输出流输出文件中的数据。
- #include<stdio.h>
- #include<string.h>
- int main()
- {
- //定义文件指针
- FILE *f = NULL;
- //打开文件
- f = fopen("1.txt","wt");
- if(f==NULL)
- {
- printf("文件读取失败!\n");
- return -1;
- }
- char buf[1024];
- //写文件
- while(strcmp(gets(buf),"quit")!=0)
- {
- fputs(buf,f);
- fputc('\n',f);
- }
- //关闭文件
- fclose(f);
- return 0;
- }
程序猿神奇的手,每时每刻,这双手都在改变着世界的交互方式!