码迷,mamicode.com
首页 > 编程语言 > 详细

编写一个删除c语言程序文件中所有的注释语句

时间:2015-03-04 22:28:49      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

//删除c语言程序中所有的注释语句,要正确处理带引号的字符串与字符串常量
#include <stdio.h>
using namespace std;
#define MAXLINE 1000
void rcomment(int c); void in_comment(void); void deleteTail(void); FILE* fp; FILE* fp2;
int main() { fp=fopen("C:\\Users\\Administrator\\Desktop\\leetcode.cpp","r"); fp2=fopen("C:\\Users\\Administrator\\Desktop\\out.txt","w"); bool deleteMutiline=false; char line[MAXLINE]; int c; while((c=getc(fp))!=EOF) rcomment(c); return 0; } void rcomment(int c){ int d; if(c==/){ if((d=getc(fp))==*) in_comment(); else if (d==/) deleteTail(); else { putc(c,fp2); putc(d,fp2); } }else putc(c,fp2); } void in_comment(void){ int c,d; c=getc(fp); d=getc(fp); while (c!=*||d!=/) { c=d; d=getc(fp); } } void deleteTail(){ int c; c=getc(fp); while (c!=\n) { c=getc(fp); } putc(\n,fp2); }

涉及标准库中的文件操作函数getc和putc,从文件中读单个字符,写单个字符到文件中。

以及文件结构FILE。

具体思路:

编写一个删除c语言程序文件中所有的注释语句

标签:

原文地址:http://www.cnblogs.com/fightformylife/p/4314226.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!