I have a text file with headers and rest of rows are numbers. Is there a way to read the file so that first row is neglected?
Thanks
Printable View
I have a text file with headers and rest of rows are numbers. Is there a way to read the file so that first row is neglected?
Thanks
Read file line by line (for instance - using MFC CStdioFile::ReadString method) and skip lines you don't want to accept.