New to c++ and programming, and I am having trouble figuring this out.
Pseudo idea; Assuming I can define the delimiters
',' ',' '\n'
then read file line by line while adding each element to each array.
#define ARRAY_SIZE 1000
string someString[ARRAY_SIZE];
double someDoubble[ARRAY_SIZE];
double someDoubble[ARRAY_SIZE];
Then the text file that I am reading is
somestring, someDouble, someDouble\n
Or in other words the delimiters are comma, comma, newline char.