Hi friends,
I'm retrieving some information from a input file with 10 columns and I need to get the first 3 columns and set into 3 different variables and the last 7 in the same variable.
I was using "ifstream" and ">>" like:
myfile >> stringA;
myfile >> stringB;
...
I was thinking to use this for the 3 initials columns and I'm in doubt about the others columns.
Thanks a lot!