文件第10章.pptVIP

  • 25
  • 0
  • 约6.08千字
  • 约 40页
  • 2017-07-26 发布于河南
  • 举报
文件第10章

第 十 章;10.1 文件的基本概念;10.1 文件的基本概念;1.文本文件与二进制文件;例如:整数1234;2.缓冲区文件系统;3.文件类型指针;10.2 文件的基本操作;;文件打开方式;#include stdio.h void main() { FILE *fp; fp=fopen(myfirst.txt,r); if(fp == NULL) { printf(file can’t open!\n); getchar(); exit(0); } };文件使用完后,为确保文件中的数据不丢失,就要 使用文件关闭函数fclose()进行关闭,其功能是将使 用完后的文件写回到磁盘。 fclose(文件指针变量); fclose(fp);;10.2.2 文件的读写;1.字符读写函数fgetc()和fputc();例 输入5行字符,将其写入到C盘根目录的ex10-1.txt文件中。 #include stdio.h #include stdlib.h void main() { FILE* fp; char ch[80], *p=ch; int n; if((fp=fopen(c:\\ex10-1.txt, w))==NULL){ printf(Cannot open the file ,strike any key to exit!\n); getchar(); exit(0); } printf(Input a string:\n); for(n=1; n=5; n++) { gets(p); while(*p!=\0){ fputc(*p, fp); p++; } fputc(\n, fp); } fclose(fp); };例 从例10-1建立的文件ex10-1.txt中读出所有的字符并显示到屏幕上。 #include stdio.h #include stdlib.h void main(){ FILE* fp; char ch; int n; if((fp=fopen(c:\\ ex10-1.txt , r))==NULL){ printf(Cannot open the file ,strike any key to exit!\n); getchar(); exit(0); } ch=fgetc(fp); while(ch!=EOF) { putchar(ch); ch=fgetc(fp); } fclose(fp); };2.字符串读写;例:将字符串”Turbo C”、”Visual C++”、”FORTRUN”,写入文件ex10-3.txt中。 程序如下: #include stdio.h #include stdlib.h void main(){ FILE* fp; char str[][15]={Turbo C,Visual C++,FORTRUN,Visual Basic,C++,Java}; int i; if((fp=fopen(c:\\ ex10-3.txt , w))==NULL){ printf(Cannot open the file ,strike any key to exit!\n); getchar(); exit(0); } for(i = 0; i 6; i ++) { fputs(str[i], fp); fputs(\n, fp); } fclose(fp); };例: 从上例中的ex10-3.txt文件中读出各个字符串并将其中第1,3,5号字符串显示在屏幕上。 #include stdio.h #include stdlib.h void main( ) { FILE* fp; char str[6][15]; int i; if((fp=fopen(c:\\ ex10-3.txt , r))==NULL){ printf(Cannot open the file ,strike any key to exit!\n); getchar(); exit(0); } for(i = 0; i 6; i ++) { fgets(str[i],15,fp); if(i%2) printf(%s, str[i]); } fc

文档评论(0)

1亿VIP精品文档

相关文档