This is most likely a dumb question! I have a text file filled with random numbers and I would like to read these numbers into an array.
My text file looks like this:
1231231 123213 123123
1231231 123213 123123
0
1231231 123213 123123
1231231 123213 123123
0
And so on.. The piece of numberse ends with 0
This is what I have tried so far:
FILE *file = fopen("c:\\Text.txt", "rt");
char line[512];
if(file != NULL)
{
while(fgets(line, sizeof line, file) != NULL)
{
fputs(line, stdout);
}
fclose(file);
}
This does clearly not work, since I read each line into the same variable.
How can I read the lines and when the line gets the line where it ends with 0, then store that piece of text into an array?
All help is appreciated.