tahinf Posted September 18, 2011 Report Share Posted September 18, 2011 olá!estou tentando fazer um programa que compare dois arquivos textos e informe se são iguais ou não e qual linha são diferentesmas mesmo os arquivos sendo iguais, ele tá acusando que são diferentes o.O"#include <stdio.h> #include <string.h> #include <ctype.h> #include <conio.h> #include <stdlib.h> int main() { FILE *fs, *fp; char c,c2; int linha =1, diferente=0; fp = fopen("l24.txt","r"); /* Arquivo ASCII, para leitura */ if(!fp) { printf( "Erro na abertura do arquivo"); } fs = fopen("l24_dest.txt","r"); if(!fs) { printf( "Erro na abertura do arquivo1"); } c = getc(fp); c2 = getc(fs); while(!feof(fp)) { if (c==c2){} else { //duas diferentes printf("são diferente na linha %d", linha ); diferente=1; } if (c=='\n') { linha++; } c = getc(fp); c2 = getc(fs); } if (diferente == 0) { printf("são iguais"); } getche(); fclose(fs); fclose(fp); return 0; } Quote Link to comment Share on other sites More sharing options...
Question
tahinf
olá!
estou tentando fazer um programa que compare dois arquivos textos e informe se são iguais ou não e qual linha são diferentes
mas mesmo os arquivos sendo iguais, ele tá acusando que são diferentes o.O"
Link to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.