C语言讲义第七章
CHAPTER7:Input Output 26 int getc(FILE *fp) /*return the next character, if at the end of the file, will return EOF */ 返回文件中的下一个字符,如果到达文件末尾则返回EOF int putc(int c, FILE *fp) /*write the character c to the file fp and return the character put out */ 将字符c写入fp指向的文件,返回写入的字符 CHAPTER7:Input Output 27 the standard in stdin the standard out stdout the standard error stderr 标准输入输出设备被看作文件处理 #define getchar() getc(stdin) #define putchar(c) putc((c),stdout) CHAPTER7:Input Output 28 Formatted input and output for file int fscanf(FILE *fp, char *format, ...); int fprintf(FILE *fp, char *format, ...); fscanf(fp, %f %f %f %f, SFx, SFy, Kx, Ky); fprintf(fp, %f %f %f %f, SFx, SFy, Kx, Ky); CHAPTER7:Input Output 29 #include stdio.h main(int argc, char *argv[ ]) /* cat concatenate files*/ { FILE *fp; void filecopy(FILE *, FILE *); if(argc==1) filecopy(stdin,stdout); else while(--argc0) if((fp=fopen(*++argv,”r”))==NULL) { printf(“cat:can’t open %s\n”,*argv); return 1; } else { filecopy(fp,stdout); fclose(fp); } return 0; } cat x.c y.c CHAPTER7:Input Output 30 /* filecopy: copy file ifp to file ofp*/ void filecopy(FILE *ifp , FILE *ofp) { int c; while((c=getc(ifp))!=EOF) putc(c,ofp); } Note: stdin and stdout are objects of type FILE *, they are constants, not variables. CHAPTER7:Input Output 31 int fclose(FILE *fp) Note: To break the connection between the file ointer and the external name that was established by fopen. You can also close stdin and stdout if they are not needed. fclose(stdin); fclose(stdout); back CHAPTER7:Input Output 32 7.6 Error Handling-Stderr and Exit if the stdout is not the screen, so the error information will be invisible. stderr Note: output written on stderr normally appears on the screen even if the standard output is redirec
您可能关注的文档
最近下载
- 支部党员大会会议记录(支委会选举范例).docx VIP
- 深圳市宝安区2025-2026学年第一学期五年级语文期末学业质量评估卷(原卷+答案)统编版.docx VIP
- 山桐子种植加工、旅游项目可行性研究报告商业计划书.docx VIP
- 山桐子种植及种苗培育种植加工可行性研究报告申请备案.doc VIP
- 和田地区2026年度地直机关公开遴选公务员、事业单位公开选聘工作人员备考题库及完整答案详解1套.docx VIP
- 山桐子合作种植协议合同.docx VIP
- 2025年香氛未来趋势报告-英敏特.docx VIP
- 报告正文2014年太阳绿宝.pdf VIP
- 2025年高考:云南物理--试题及答案.pdf VIP
- 广东省深圳市宝安区2025-2026学年五年级上学期期末学业质量评估语文试卷.docx VIP
原创力文档

文档评论(0)