基本信息
文件名称:C语言程序设计 课件 第10章 文件.ppt
文件大小:927.5 KB
总页数:36 页
更新时间:2025-09-11
总字数:约1.2万字
文档摘要

***§10.3文件操作例10.7remind的应用。在屏幕上显示a.txt文件的内容,并将a.txt文件内容复制到b.txt文件中。#includestdio.h#includestdlib.hintmain(){FILE*fp1,*fp2;if((fp1=fopen(a.txt,r))==NULL)//以读方式打开文本文件{printf(Cannotopenfile.\n);exit(0);}