I have the following for loop executing within my program and I can't see how it's design correlates with the output I'm receiving.
cout << no_of_lines << endl;
for (int count = 0; count < no_of_lines + 1; count ++)
{
getline(Device, line, '=');
cout << line << endl;
}
This is the output:
3
DeviceName
GPU
Manufacturer
Intel
GraphicalRam
128MB
And this is the file DeviceList
DeviceName=GPU
Manufacturer=Intel
GraphicalRam=128MB
In the loop, no_of_lines refers to the number of lines in the file, in this case 3. I have provided this output as verification that the loop is only executing once per line. Can anyone tell me why this loop is executing more times than is expected? I'm guessing it's because of my inclusion of = as the deliminator, and that the loop is somehow executing an additional time before incrementing, but then why does it stop on the deliminator on the last line, requiring me to add 1 to the loop limit?
DeviceList.getline(line, 255, '=');. Am I missing something? – Mikhail Nov 24 '10 at 3:19