Can the position at which the getline reads using the seekg or is getline only read lines from the top down?
getline() reads from the current location. Whether that location is set because of a previous getline() or because of of seekg() makes no difference.
I tried moving the read position for getline using seekg but getline continues reading from the same location.
Am I missing something or is the a limit of the library.
Post your code.