read comma separated text file in cpp code example
Example: read comma separated text file in c++
#include <iostream>
#include <fstream>
#include <string>
ifstream file("filename.txt");
string data = "";
while(getline(file, data,','))
{
cout << data << endl;
}
file.close();