There are many variations of this question on this site but all of the answers assume the user has a good fundamental knowledge of how C++ works. As a beginner, this is not good for me.
I have a very simple subroutine attempting to print a single item from a csv file.
void parseCSV()
{
int line = 0;
ofstream myFile("C:/Users/joe-p/Documents/Book1.csv");
getline(myFile, line, ',');
}
"Getline" is tagged with an error: "No instance of everloaded function "Getline" matches the argument list"
THis is very frustrating as i know the answer is in multiple answers which i've read already, but copying the example code and just trying to cause myself just isn't working for me.