printf(" Enter file1: ",file1);
gets(file1);
printf("Enter file2: ",file2);
gets(file2);

Don't use gets, fgets should be used instead.

The printf statements should not be using the...