I am getting info from a text file and putting it in an array. There is a blank line that I want to skip over. b/c when I use getline(file, array[][]), the blank line is getting grouped with the line after it as well.
Also when I use getline(file, array[][]), then go to print out all the array rows to their own line, I have a problem with the lines that I used file, getline(file, array[][]). They have their own line instead of printing on the same line as the other elements in their row.