Advertisement
shawonrog

Removinf block comment

Oct 29th, 2019
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.05 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. //Removing Block Comment from a given Code.
  5.  
  6. int main()
  7. {
  8.     char a;
  9.     FILE *fp1,*fp2;
  10.     fp1=fopen("new1.txt","r");
  11.     fp2=fopen("new2.txt","w");
  12.     while((a=fgetc(fp1))!=EOF)
  13.     {
  14.         if(a=='/')
  15.         {
  16.          while((a=fgetc(fp1))!=EOF)
  17.         {
  18.         if(a=='*')
  19.         {
  20.             while((a=fgetc(fp1))!=EOF)
  21.             {
  22.                 if(a=='*')
  23.                 {
  24.                     while((a=fgetc(fp1))!=EOF)
  25.                     {
  26.                         if(a=='/')
  27.                             a=fgetc(fp1);
  28.                             break;
  29.                     }
  30.                     break;
  31.                 }
  32.             }
  33.             break;
  34.  
  35.         }
  36.         else
  37.         {
  38.             fputc('/',fp2);
  39.             break;
  40.         }
  41.  
  42.         }
  43.  
  44.         }
  45.     fputc(a,fp2);
  46.  
  47.     }
  48.     fclose(fp2);
  49.     fclose(fp1);
  50.     fp2=fopen("new2.txt","r");
  51.     while((a=fgetc(fp1))!=EOF)
  52.     {
  53.         printf("%c",a);
  54.     }
  55.     fclose(fp2);
  56.  
  57.     return 0;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement