文件第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 ope

文档评论(0)

1亿VIP精品文档

相关文档