File ——fscanf&fprintf
View Code
#include<stdio.h>
#include<stdlib.h>
FILE *fp;
int main()
{
long l;
float f;
char s[89];
char c;
fp=fopen("C:\\file\\fscanf_fprintf.txt", "w+");
if(fp==NULL) printf("Can't Open The File\n");
else
{
fprintf(fp, "%s %d %f%c", "stringbutwithoutblank", 57587, 4.484, 'x');//向文件输入内容
fseek(fp, 0L, SEEK_SET); //fseek的作用是重置fp的位置,0L表示偏移量为0,seek_set表示文件开头
fscanf(fp, "%s%d%f%c", s, &l, &f, &c); //从文件读出内容
printf("%s\n%d\n%f\n%c\n", s, l, f, c); //输出读出的内容
fclose(fp);
}
return 0;
}
fscanf 和 fprintf 的详细用法如上面的代码所示。
上面代码的运行结果为:
posted on 2011-11-06 00:37 More study needed. 阅读(242) 评论(0) 编辑 收藏 举报