Reading separated columns in a CSV file in C++ using getLine
Reading separated columns in a CSV file in C++ using getLine
I have a program that can successfully read a CSV file. The said CSV file is a list separated by 3 columns. And each column has a comma in between each line. For instance
line 1 — artist, genre, song line 2 — Michael jackson, Pop, thriller
and so on. What I want my program to do is read the first line and to take artist, genre, and song, print those out to the user as options. For instance
“Cho…
View On WordPress















