A file contains the following data:
10 11 12 13 14 15
16 17 18 19 20 21
I have read the first line into an integer array. Now I want to read the second line of numbers into a second array. How can I accomplish the second array thing? I've used the following code to read in the first line:
while(!mystream.eof())
{
mystream>>a[i];
i++;
}