input file - C++ Ignore Empty First Line - Stack Overflow
... so I need to be able to read the line if there is information, or skip it if it is blank. This is just for the first line. while (getline(mcFile, line)) { istringstream liness2(line); ... } That's how I'm reading the lines....