码迷,mamicode.com
首页 > 其他好文 > 详细

《用格式化(fprintf和fscanf函数)的方式读写文件》

时间:2015-09-15 21:49:14      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

//用格式化(fprintf和fscanf函数)的方式读写文件

【用格式化的方式向文件中写入数据】
#include<stdio.h>
#include<stdlib.h>

int main()
{
int i=12,f=3;
FILE *fp;


if((fp=fopen("f:\\FILE_1\\file_4.txt","w"))==NULL)
{
printf("can‘t open file\n");
exit(0);
}


fprintf(fp,"%d,%d",i,f);
fclose(fp);
printf("\n");
return 0;
}

 

 

【用格式化的方式从文件中读入数据】

#include<stdio.h>
#include<stdlib.h>

int main()
{
int i=12,f=3;
FILE *fp;
if((fp=fopen("f:\\FILE_1\\file_4.txt","w"))==NULL)
{
printf("can‘t open file\n");
exit(0);
}
//fprintf(fp,"%d,%d",i,f);
fscanf(fp,"%d,%d",i,f);

//把读到的数据显示在屏幕上
printf("%d,%d",i,f);
fclose(fp);
printf("\n");
return 0;
}

 

《用格式化(fprintf和fscanf函数)的方式读写文件》

标签:

原文地址:http://www.cnblogs.com/sun-/p/4811376.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!