I am trying to read from a csv file, the file looks like below:
1,2,3
4,5,6
7,8,9
0
I used getline(Input_file,size,',') but the problem with this is that it seems to see the numbers not separated by commas as one string., for the code below i was expecting the following output:
1...