Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- int main(){
- FILE* ulaz=fopen("index.html","r");
- FILE* izlaz=fopen("index.txt","w");
- if(ulaz==NULL){
- printf("Datoteka index.html ne postoji");
- return 0;
- }
- int c;
- while((c=fgetc(ulaz))!=EOF){
- if(c=='<')
- for(;c!=EOF && c!='>';c=fgetc(ulaz));
- else if(c=='&')
- for(;c!=EOF && c!=';';c=fgetc(ulaz));
- else
- fputc(c,izlaz);
- }
- fclose(ulaz);
- fclose(izlaz);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment