- #1
camel-man
- 76
- 0
I am supposed to read from 2 text files containing numbers in ascending order, then output the all the numbers in ascending order to an output file, For some reason my output file is reaching an infinite loop it orders the numbers correctly but the last number reapeats forever. I am thinking it has to do with my conditional statements such as feof, when maybe I should be using EOF. Can someone help, thanks.
Code:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[])
{
FILE *i1;
FILE *i2;
FILE *o;
int num1, num2;
if(argc!=4)
{
printf("Error in valid number of arguments\n");
exit(1);
}
if((i1=fopen(argv[1], "r"))==NULL)
{
printf("Failed to open First File\n");
exit(1);
}
if((i2=fopen(argv[2],"r"))==NULL)
{
printf("Failed to open Second File\n");
exit(1);
}
if((o=fopen(argv[3],"w"))==NULL)
{
printf("Failed to open Third File\n");
exit(1);
}
while(!feof(i1) && !feof(i2))
{
fscanf(i1,"%d",&num1);
fscanf(i2,"%d",&num2);
if(num1<=num2)
fprintf(o,"%d\n",num1);
else
fprintf(o,"%d\n",num2);
}
if(!feof(i1))
{
fprintf(o,"%d\n",num1);
while(!feof(i1))
{
fscanf(i1,"%d",&num1);
fprintf(o,"%d\n",num1);
}
}
if(!feof(i2))
{
fprintf(o,"%d\n",num2);
while(!feof(i2))
{
fscanf(i1,"%d",&num2);
fprintf(o,"%d\n",num2);
}
}
fclose(i1);
fclose(i2);
fclose(o);
return 0;
}