如何在工程目录下读取.c的源文件 然后分析文件中是否有“/* ”“//”
7条回答 默认 最新
threenewbee 2014-12-08 07:07关注#include
int main()
{
FILE *fp,*fp1; char str[99]=""; int i=0; fp=fopen("test.c","r"); //要打开的源文件 fp1=fopen("new.c","w"); //另存为 while(fgets(str,99,fp)!=NULL) { for(i=0;i<99;i++) if(str[i]=='/'&&str[i-1]=='/'){str[i-1]='\n';str[i]='\0';break;} fputs(str,fp1); } fcloseall(); return 0;}
如果有/* */块注释的话,用这个
#include
#include
int main()
{
FILE *fp,*fp1; char str[99]="",str1[99]=""; int i,j,no=0; fp=fopen("test.c","r"); //要打开的源文件 fp1=fopen("new.c","w"); //另存为 while(fgets(str,99,fp)!=NULL) { for(i=0;i<99;i++) { if(str[i]=='/'&&str[i-1]=='/') {str[i-1]='\n';str[i]='\0';} if(str[i]=='*'&&str[i-1]=='/') {str[i-1]='\0';no=1;fputs(str,fp1);} if(str[i]=='/'&&str[i-1]=='*') { for(j=0;j<98-i;j++){str[j]=str[i+j+1];} str[j]='\0'; no=0; } } if(no==0)fputs(str,fp1); } fcloseall(); return 0;}
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报