The following code has the intent of reading doubles from a file and putting them into an array. Quite simple.
double arr[100];
int i = 0;
while(fscanf(fin, "%lf", &arr[i]) != EOF)
i++;
However when I print the array I get weird values. If I substitute the array variable with a regular double variable and inside the previously mentioned while loop print the value of this variable it gets printed correctly. What is wrong with the mentioned code? I tried initializing all values in the array beforehand, but, of course, that was no help either.
idoesn't get to high and overwrites memory outside of the array. Second, did you printiandarr[i]inside the loop as well? – Joachim Pileborg Nov 5 '11 at 7:08fscanf()says: "... EOF is returned if the end of input is reached before either the first successful conversion or a matching failure occurs. EOF is also returned if a read error occurs..." – alk Nov 5 '11 at 11:24